summaryrefslogtreecommitdiffstats
path: root/test/unit/ui/stubs/app_stub.cpp
blob: 094806f06096ccad60fa0db7f0a756417b384934 (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
27
28
29
30
31
32
33
34
35
36
37
38
#include "app/app.h"

#include "graphics/opengl/gldevice.h"

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

namespace Gfx {

GLDeviceConfig::GLDeviceConfig()
{
}

} /* Gfx */ 


CApplication::CApplication()
{
}

CApplication::~CApplication()
{
}

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

CSoundInterface* CApplication::GetSound()
{
    return nullptr;
}

CEventQueue* CApplication::GetEventQueue()
{
    return nullptr;
}