22 lines
467 B
C++
22 lines
467 B
C++
#ifndef GENERALSYSTEMPARAMS_H
|
|
#define GENERALSYSTEMPARAMS_H
|
|
|
|
#include <QDataStream>
|
|
|
|
class CGeneralSystemParams
|
|
{
|
|
public:
|
|
CGeneralSystemParams();
|
|
|
|
int mLocalLogVerbosity;
|
|
int mLogFileVerbosity;
|
|
|
|
CGeneralSystemParams &operator=(const CGeneralSystemParams &source);
|
|
};
|
|
|
|
QDataStream &operator<<(QDataStream &out, const CGeneralSystemParams &source);
|
|
QDataStream &operator>>(QDataStream &in, CGeneralSystemParams &dest);
|
|
|
|
|
|
#endif // GENERALSYSTEMPARAMS_H
|