summaryrefslogtreecommitdiffhomepage
path: root/config.cpp
blob: a3fcf3c3e5248ad8bc903315b83c80b80e3a42e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "config.h"

Config::Config(): m_dataPath{"/var/lib/whiteboard"}
{
 // TODO: read /etc/whiteboard.conf xml
}

std::string Config::getDataPath()
{
 return m_dataPath;
}