在服务器上第一次调试

This commit is contained in:
2021-12-03 12:55:05 +08:00
parent 8d73aba000
commit bebef6bef6
24 changed files with 2040 additions and 8 deletions

View File

@ -0,0 +1,16 @@
#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);
};