mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 19:21:15 +00:00
25 lines
351 B
C++
25 lines
351 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();
|
|
|
|
MxAtomId()
|
|
{
|
|
this->m_internal = 0;
|
|
}
|
|
|
|
private:
|
|
char *m_internal;
|
|
};
|
|
|
|
#endif // MXATOMID_H
|