mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
20 lines
395 B
C
20 lines
395 B
C
![]() |
#ifndef _APPCONFIG_H_
|
||
|
#define _APPCONFIG_H_
|
||
|
|
||
|
#include "Config.h"
|
||
|
#include "Singleton.h"
|
||
|
|
||
|
class CAppConfig : public Framework::CConfig, public CSingleton<CAppConfig>
|
||
|
{
|
||
|
public:
|
||
|
friend CSingleton<CAppConfig>;
|
||
|
|
||
|
private:
|
||
|
CAppConfig();
|
||
|
virtual ~CAppConfig();
|
||
|
|
||
|
static CConfig::PathType BuildConfigPath();
|
||
|
};
|
||
|
|
||
|
#endif
|