summaryrefslogtreecommitdiffstats
path: root/src/client/util/util.h
blob: e7a5ac9e31f337a9f0791eefdb6f3c01af700ebc (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
#ifndef PVS_UTIL_H_
#define PVS_UTIL_H_

#include <QDir>
#include <QTextStream>

namespace Util
{
//#
//#
QDir settingsDir();
//#
//#
}


inline QTextStream& qStdout()
{
	static QTextStream r {stdout};
	return r;
}


#endif /* PVS_UTIL_H_ */