summaryrefslogblamecommitdiffstats
path: root/src/client/util/util.h
blob: e7a5ac9e31f337a9f0791eefdb6f3c01af700ebc (plain) (tree)
1
2
3
4
5

                   
 
               
                      









                   
 

                             

                                      

 
 
                        
#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_ */