mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
38 lines
935 B
C
38 lines
935 B
C
|
//*************************************************************************************************
|
||
|
//*************************************************************************************************
|
||
|
//
|
||
|
// STRING
|
||
|
//
|
||
|
//*************************************************************************************************
|
||
|
//*************************************************************************************************
|
||
|
|
||
|
#if !defined(__XStringWP_H__)
|
||
|
#define __XStringWP_H__
|
||
|
|
||
|
#include "XStringWP.h"
|
||
|
#include "XStringW.h"
|
||
|
|
||
|
#include "XToolsCommon.h"
|
||
|
#include "utf8Conversion.h"
|
||
|
|
||
|
#define XStringWP_super XStringW
|
||
|
class XStringWP : public XStringWP_super
|
||
|
{
|
||
|
protected:
|
||
|
// wchar_t *m_data;
|
||
|
|
||
|
public:
|
||
|
XStringWP() : XStringWP_super() {};
|
||
|
XStringWP(const wchar_t *);
|
||
|
// XStringWP(const wchar_t* S, UINTN count);
|
||
|
// XStringWP(const wchar_t);
|
||
|
XStringWP(const char*);
|
||
|
|
||
|
// ~XStringWP();
|
||
|
|
||
|
public:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|