mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00: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
|