mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
15 lines
213 B
C
15 lines
213 B
C
|
#ifndef MXATOMID_H
|
||
|
#define MXATOMID_H
|
||
|
|
||
|
class MxAtomId
|
||
|
{
|
||
|
public:
|
||
|
__declspec(dllexport) MxAtomId &operator=(const MxAtomId &id);
|
||
|
__declspec(dllexport) ~MxAtomId();
|
||
|
|
||
|
char *m_internal;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MXATOMID_H
|