isle/LEGO1/mxstring.h
2023-06-14 01:22:42 +01:00

21 lines
357 B
C++

#ifndef MXSTRING_H
#define MXSTRING_H
#include "mxcore.h"
class MxString : public MxCore
{
public:
__declspec(dllexport) MxString(const MxString &);
__declspec(dllexport) virtual ~MxString();
__declspec(dllexport) const MxString &operator=(const char *);
MxString();
private:
char *m_data;
unsigned short m_length;
};
#endif // MXSTRING_H