6f97a764bca4408c81bd6cd10062fa981a771cb5
[vlp.git] / src / kernel / kill_interpreter_dialog.cpp
1 #include <QtGui/QDialog>
2
3 #include "kill_interpreter_dialog.h"
4
5 KillInterpreterDialog::KillInterpreterDialog(QWidget * parent)
6         : QDialog(parent, Qt::Dialog)
7 {
8         setupUi(this);
9 }
10
11 KillInterpreterDialog::~KillInterpreterDialog()
12 {
13 }
14
15 int KillInterpreterDialog::getInterpreterId()
16 {
17         return interpreterId->text().toInt();
18 }