summaryrefslogtreecommitdiffstats
path: root/src/ui/test/stubs/app_stub.cpp
blob: 5dd79e4321a31571e1d3bc4ee1ee921bdc8bf252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "../../app/app.h"
#include "../../graphics/opengl/gldevice.h"

template<> CApplication* CSingleton<CApplication>::mInstance = nullptr;

namespace Gfx {

GLDeviceConfig::GLDeviceConfig()
{
}

} /* Gfx */ 
CApplication::CApplication()
{
}

CApplication::~CApplication()
{
}

std::string CApplication::GetDataFilePath(DataDir /* dataDir */, const std::string& subpath)
{
    return subpath;
}