cb9d149055f77963391906b114b94f3f97a7ad99
[vlp.git] / src / kernel / MessageDialog.h
1 #ifndef _VLP_KERNEL_MESSAGEDIALOG_H
2 #define _VLP_KERNEL_MESSAGEDIALOG_H
3
4 #include <QtGui/QDialog>
5
6 #include "ui/dialogs/MessageDialog.h"
7
8 namespace loglan {
9 namespace vlp {
10 namespace dialog {
11
12 /**
13  * Message Dialog class
14  */
15 class MessageDialog : public QDialog, private Ui::MessageDialog {
16 public:
17         MessageDialog(QWidget * parent = 0);
18         ~MessageDialog();
19
20         int getNodeNumber();
21         QString getMessage();
22 };
23
24 }
25 }
26 }
27
28 #endif /* _VLP_KERNEL_MESSAGEDIALOG_H */