33 lines
451 B
C++
33 lines
451 B
C++
#include "LogicJudge.h"
|
|
#include "frmLogicJudge.h"
|
|
|
|
LogicJudge::LogicJudge()
|
|
{
|
|
}
|
|
|
|
QString LogicJudge::name()
|
|
{
|
|
return "털뙤刀얌";
|
|
}
|
|
|
|
QString LogicJudge::information()
|
|
{
|
|
return "쭉서묏야";
|
|
}
|
|
|
|
QDialog* showDialog(QString toolName, QToolBase* toolBase)
|
|
{
|
|
frmLogicJudge* ss = new frmLogicJudge(toolName, toolBase);
|
|
return ss;
|
|
}
|
|
|
|
int ShowFormState()
|
|
{
|
|
return QConfig::nFormState;
|
|
}
|
|
|
|
void SetFormState()
|
|
{
|
|
QConfig::nFormState = 0;
|
|
}
|