25 lines
489 B
C++
25 lines
489 B
C++
|
#pragma execution_character_set("utf-8")
|
|||
|
|
|||
|
#include "frmsaveruntime.h"
|
|||
|
#include "ui_frmsaveruntime.h"
|
|||
|
#include "saveruntime.h"
|
|||
|
|
|||
|
frmSaveRunTime::frmSaveRunTime(QWidget *parent) : QWidget(parent), ui(new Ui::frmSaveRunTime)
|
|||
|
{
|
|||
|
ui->setupUi(this);
|
|||
|
}
|
|||
|
|
|||
|
frmSaveRunTime::~frmSaveRunTime()
|
|||
|
{
|
|||
|
delete ui;
|
|||
|
}
|
|||
|
|
|||
|
void frmSaveRunTime::on_checkBox_stateChanged(int arg1)
|
|||
|
{
|
|||
|
if (arg1 == 0) {
|
|||
|
SaveRunTime::Instance()->stop();
|
|||
|
} else {
|
|||
|
SaveRunTime::Instance()->start();
|
|||
|
}
|
|||
|
}
|