isle-portable/LEGO1/mxstring.h

18 lines
225 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"
class MxString : public MxCore
2023-04-27 22:19:39 -04:00
{
public:
2023-04-29 23:39:01 -04:00
__declspec(dllexport) virtual ~MxString();
2023-04-27 22:19:39 -04:00
private:
2023-04-29 23:39:01 -04:00
char *m_data;
unsigned short m_length;
2023-04-27 22:19:39 -04:00
};
#endif // MXSTRING_H