isle-portable/LEGO1/mxstring.h

30 lines
682 B
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXSTRING_H
#define MXSTRING_H
2023-04-29 23:39:01 -04:00
#include "mxcore.h"
// VTABLE 0x100dc110
2023-10-24 19:38:27 -04:00
class MxString : public MxCore {
2023-04-27 22:19:39 -04:00
public:
2023-10-24 19:38:27 -04:00
__declspec(dllexport) MxString(const MxString&);
__declspec(dllexport) virtual ~MxString();
__declspec(dllexport) const MxString& operator=(const char*);
2023-04-27 22:19:39 -04:00
2023-10-24 19:38:27 -04:00
MxString();
MxString(const char*);
void ToUpperCase();
void ToLowerCase();
MxString& operator=(const MxString&);
MxString operator+(const char*);
MxString& operator+=(const char*);
inline MxS8 Compare(const MxString& p_str) const { return strcmp(m_data, p_str.m_data); }
2023-10-24 19:38:27 -04:00
inline const char* GetData() const { return m_data; }
2023-04-27 22:19:39 -04:00
private:
2023-10-24 19:38:27 -04:00
char* m_data;
MxU16 m_length;
2023-04-27 22:19:39 -04:00
};
#endif // MXSTRING_H