32 lines
374 B
C++
32 lines
374 B
C++
#ifndef BASE_DATAMANAGER_H
|
|
#define BASE_DATAMANAGER_H
|
|
|
|
|
|
#include "Singleton.h"
|
|
#include "DataManagerGlobal.h"
|
|
#include "pugixml.hpp"
|
|
#include "Util.h"
|
|
#include "Error.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
class DATAMANAGER_DLL_API_EXPORTS BaseDataManager
|
|
{
|
|
|
|
|
|
public:
|
|
BaseDataManager();
|
|
~BaseDataManager();
|
|
|
|
|
|
void destroy();
|
|
|
|
};
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |