mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
279d626279
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
19 lines
342 B
C++
19 lines
342 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 *);
|
|
|
|
private:
|
|
char *m_data;
|
|
unsigned short m_length;
|
|
|
|
};
|
|
|
|
#endif // MXSTRING_H
|