mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
20 lines
295 B
C++
20 lines
295 B
C++
#ifndef MXATOMID_H
|
|
#define MXATOMID_H
|
|
|
|
enum LookupMode
|
|
{
|
|
};
|
|
|
|
class MxAtomId
|
|
{
|
|
public:
|
|
__declspec(dllexport) MxAtomId(const char *, LookupMode);
|
|
__declspec(dllexport) MxAtomId &operator=(const MxAtomId &id);
|
|
__declspec(dllexport) ~MxAtomId();
|
|
|
|
char *m_internal;
|
|
|
|
};
|
|
|
|
#endif // MXATOMID_H
|