Move kill interpreter dialog code to separate ui file
[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 /**
9  * Kill Interpreter Dialog class
10  */
11 class KillInterpreterDialog : public QDialog, private Ui::KillInterpreterDialog {
12 public:
13         KillInterpreterDialog(QWidget * parent = 0);
14         ~KillInterpreterDialog();
15
16         int getInterpreterId();
17 };
18
19 #endif /* _VLP_KERNEL_KILLINTERPRETERDIALOG_H */