添加了位置定标程序 及位置移动相关程序源码

This commit is contained in:
2022-01-12 14:30:11 +08:00
parent 5b44f94a64
commit f0ecbb8710
446 changed files with 34544 additions and 0 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);
};