Files
newspark110/device/bridgesgl.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

29 lines
555 B
C++

#ifndef BRIDGESGL_H
#define BRIDGESGL_H
#include <QObject>
#define BDGSGL BridgeSGL::instance()
class BridgeSGL:public QObject
{
Q_OBJECT
public:
static BridgeSGL* instance();
signals:
void addZAAxisCPosSGL(QString textValue,double value);
void deleteZAAxisCPosSGL(QString value);
void ZAAxisCPosListChangedSGL(QStringList value);
private:
BridgeSGL();
BridgeSGL(BridgeSGL const&) = delete;
BridgeSGL& operator = (BridgeSGL const&) = delete;
protected:
static BridgeSGL* uniqueInstance;
};
#endif // BRIDGESGL_H