mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
14 lines
254 B
C++
14 lines
254 B
C++
#include "AppConfig.h"
|
|
#include "PathUtils.h"
|
|
|
|
#define CONFIG_FILENAME ("config.xml")
|
|
|
|
CAppConfig::CAppConfig()
|
|
: CConfig(BuildConfigPath())
|
|
{
|
|
}
|
|
|
|
Framework::CConfig::PathType CAppConfig::BuildConfigPath()
|
|
{
|
|
return GetBasePath() / CONFIG_FILENAME;
|
|
}
|