Documentation fixes
[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 /**
9  * @file
10  */
11
12 namespace loglan {
13 namespace vlp {
14 namespace dialog {
15
16 /**
17  * Message Dialog class
18  */
19 class MessageDialog : public QDialog, private Ui::MessageDialog {
20 public:
21         MessageDialog(QWidget * parent = 0);
22         ~MessageDialog();
23
24         int getNodeNumber();
25         QString getMessage();
26 };
27
28 }
29 }
30 }
31
32 #endif /* _VLP_KERNEL_MESSAGEDIALOG_H */