]> ToastFreeware Gitweb - toast/confclerk.git/blob - src/gui/eventdialog.h
e8aaab24b4db03d37d1b7c91db8217deff242288
[toast/confclerk.git] / src / gui / eventdialog.h
1 #ifndef EVENTDIALOG_H
2 #define EVENTDIALOG_H
3
4 #include <QDialog>
5 #include "ui_eventdialog.h"
6 #include <event.h>
7
8 class EventDialog : public QDialog, Ui::EventDialog
9
10 public:
11     EventDialog(const int &aEventId, QWidget *aParent = NULL);
12     ~EventDialog() {}
13 private:
14     int mEventId;
15 };
16
17 #endif /* EVENTDIALOG_H */
18