KSOE/Day1-IntroductionGUIFrameworks/HelloWorlds/qml_helloworld/qml_hello/countermanager.h
Christoph Sterz 5e04fb6197 More Embedded
2022-10-09 15:48:33 +02:00

22 lines
271 B
C++

#ifndef COUNTERMANAGER_H
#define COUNTERMANAGER_H
#include <QObject>
class CounterManager : public QObject
{
Q_OBJECT
public:
explicit CounterManager(QObject *parent = nullptr);
signals:
protected:
private:
int m_counter;
};
#endif // COUNTERMANAGER_H