ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
MAEMO: work on alarm
[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