add more MxString functions (#31)

This commit is contained in:
MS
2023-06-21 03:30:07 -04:00
committed by GitHub
parent 290c006d14
commit 6207d1f775
2 changed files with 58 additions and 6 deletions

View File

@@ -11,6 +11,10 @@ public:
__declspec(dllexport) const MxString &operator=(const char *);
MxString();
MxString(const char *);
void ToUpperCase();
void ToLowerCase();
const MxString &operator=(MxString *);
private:
char *m_data;