33 lines
451 B
C++
33 lines
451 B
C++
|
#include "LogicJudge.h"
|
|||
|
#include "frmLogicJudge.h"
|
|||
|
|
|||
|
LogicJudge::LogicJudge()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
QString LogicJudge::name()
|
|||
|
{
|
|||
|
return "<EFBFBD>ж<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
|
|||
|
QString LogicJudge::information()
|
|||
|
{
|
|||
|
return "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
|
|||
|
QDialog* showDialog(QString toolName, QToolBase* toolBase)
|
|||
|
{
|
|||
|
frmLogicJudge* ss = new frmLogicJudge(toolName, toolBase);
|
|||
|
return ss;
|
|||
|
}
|
|||
|
|
|||
|
int ShowFormState()
|
|||
|
{
|
|||
|
return QConfig::nFormState;
|
|||
|
}
|
|||
|
|
|||
|
void SetFormState()
|
|||
|
{
|
|||
|
QConfig::nFormState = 0;
|
|||
|
}
|