1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef LAYERTRIGGER_H
- #define LAYERTRIGGER_H
- #include <QObject>
- class LayerTrigger : public QObject
- {
- Q_OBJECT
- public:
- explicit LayerTrigger(QObject *parent = nullptr);
- signals:
- void updateLayer();
- };
- #endif
|