layertrigger.h 243 B

12345678910111213141516
  1. #ifndef LAYERTRIGGER_H
  2. #define LAYERTRIGGER_H
  3. #include <QObject>
  4. class LayerTrigger : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit LayerTrigger(QObject *parent = nullptr);
  9. signals:
  10. void updateLayer();
  11. };
  12. #endif // LAYERTRIGGER_H