mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
17 lines
225 B
C++
17 lines
225 B
C++
#ifndef MXSTRING_H
|
|
#define MXSTRING_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
class MxString : public MxCore
|
|
{
|
|
public:
|
|
__declspec(dllexport) virtual ~MxString();
|
|
|
|
private:
|
|
char *m_data;
|
|
unsigned short m_length;
|
|
|
|
};
|
|
|
|
#endif // MXSTRING_H
|