17 lines
218 B
C
17 lines
218 B
C
|
#ifndef EVENTFORM_H
|
||
|
#define EVENTFORM_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class EventForm : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit EventForm(QObject *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // EVENTFORM_H
|