13 lines
125 B
C
Raw Normal View History

2024-04-14 22:45:38 +02:00
#ifndef EXAMPLE_H
#define EXAMPLE_H
#include <QObject>
class Example : public QObject
{
Q_OBJECT
Example();
};
#endif