mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
14 lines
213 B
C++
14 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
|