Pool Video Switch v2
Software video switch for distributed remote display in a lecture environment
util.h
Go to the documentation of this file.
1 #ifndef PVS_UTIL_H_
2 #define PVS_UTIL_H_
3 
4 #include <QDir>
5 #include <QTextStream>
6 
7 namespace Util
8 {
9 //#
10 //#
11 QDir settingsDir();
12 //#
13 //#
14 }
15 
16 
17 inline QTextStream& qStdout()
18 {
19  static QTextStream r {stdout};
20  return r;
21 }
22 
23 
24 #endif /* PVS_UTIL_H_ */
Definition: util.cpp:11
QDir settingsDir()
Definition: util.cpp:15
QTextStream & qStdout()
Definition: util.h:17