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