2e0f931219be60ec42fe853c06de8d04ae62b35d
[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 namespace loglan {
9 namespace vlp {
10 namespace dialog {
11
12 /**
13  * Kill Interpreter Dialog class
14  */
15 class KillInterpreterDialog : public QDialog, private Ui::KillInterpreterDialog {
16 public:
17         KillInterpreterDialog(QWidget * parent = 0);
18         ~KillInterpreterDialog();
19
20         int getInterpreterId();
21 };
22
23 }
24 }
25 }
26
27 #endif /* _VLP_KERNEL_KILLINTERPRETERDIALOG_H */