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