2024-11-11 15:18:55 +01:00

13 lines
125 B
C++

#ifndef EXAMPLE_H
#define EXAMPLE_H
#include <QObject>
class Example : public QObject
{
Q_OBJECT
Example();
};
#endif