mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-19 03:49:42 +08:00
17 lines
215 B
C++
17 lines
215 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
class logout : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
logout(QObject *parent);
|
|
~logout();
|
|
static void out(QString str, int level=0);
|
|
static void setoutlevel(int level = 4);
|
|
};
|