Documentation fixes
[vlp.git] / src / kernel / KillDialog.h
1 #ifndef _VLP_KERNEL_KILLINTERPRETERDIALOG_H
2 #define _VLP_KERNEL_KILLINTERPRETERDIALOG_H
3
4 #include <QtGui/QDialog>
5
6 #include "ui/dialogs/KillDialog.h"
7
8 /**
9  * @file
10  */
11
12 namespace loglan {
13 namespace vlp {
14 namespace dialog {
15
16 /**
17  * Kill Interpreter Dialog class
18  */
19 class KillInterpreterDialog : public QDialog, private Ui::KillInterpreterDialog {
20 public:
21         KillInterpreterDialog(QWidget * parent = 0);
22         ~KillInterpreterDialog();
23
24         int getInterpreterId();
25 };
26
27 }
28 }
29 }
30
31 #endif /* _VLP_KERNEL_KILLINTERPRETERDIALOG_H */