mirror of
https://github.com/libretro/Play-.git
synced 2024-12-13 20:22:25 +00:00
0bca5c42a1
git-svn-id: http://svn.purei.org/purei/trunk@1193 b36208d7-6611-0410-8bec-b1987f11c4a2
20 lines
334 B
C++
20 lines
334 B
C++
#ifndef _APPCONFIG_H_
|
|
#define _APPCONFIG_H_
|
|
|
|
#include "Config.h"
|
|
#include "Singleton.h"
|
|
|
|
class CAppConfig : public Framework::CConfig, public CSingleton<CAppConfig>
|
|
{
|
|
public:
|
|
CAppConfig();
|
|
virtual ~CAppConfig();
|
|
|
|
static CConfig::PathType GetBasePath();
|
|
|
|
private:
|
|
static CConfig::PathType BuildConfigPath();
|
|
};
|
|
|
|
#endif
|