You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
395 B
C++
20 lines
395 B
C++
#ifndef CUISIGSCENTER_H
|
|
#define CUISIGSCENTER_H
|
|
|
|
#include <QObject>
|
|
#include "CUIPropertyAPI.h"
|
|
|
|
class CUIPropertyAPI CUISigsCenter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CUISigsCenter(QObject *parent = nullptr);
|
|
static CUISigsCenter* getInstance();
|
|
signals:
|
|
void sig_cuiPropertyChanged(int);
|
|
private:
|
|
static CUISigsCenter* m_instance;
|
|
};
|
|
|
|
#endif // CUISIGSCENTER_H
|