summaryrefslogtreecommitdiffstats
path: root/src/client/util/util.cpp
blob: 9dcbebbc800985d18473f26ea307184ae74bde57 (plain) (blame)
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
/*
 * Util.cpp
 *
 *  Created on: 18.01.2013
 *      Author: sr
 */

#include "util.h"
#include <QSettings>

namespace Util
{
//#
//#
QDir settingsDir()
{
	USER_SETTINGS(settings);
	QFileInfo fi(settings.fileName());
	QDir path(fi.path());
	return path;
}
//#
//#
}