13 lines
125 B
C++
13 lines
125 B
C++
#ifndef EXAMPLE_H
|
|
#define EXAMPLE_H
|
|
|
|
#include <QObject>
|
|
|
|
class Example : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Example();
|
|
};
|
|
|
|
#endif
|