33 lines
435 B
C++
33 lines
435 B
C++
#include "FindLine.h"
|
|
#include "frmFindLine.h"
|
|
|
|
FindLine::FindLine()
|
|
{
|
|
}
|
|
|
|
QString FindLine::name()
|
|
{
|
|
return "璣冷殮窟";
|
|
}
|
|
|
|
QString FindLine::information()
|
|
{
|
|
return "섯부묏야";
|
|
}
|
|
|
|
QDialog* showDialog(QString toolName, QToolBase* toolBase)
|
|
{
|
|
frmFindLine* ss = new frmFindLine(toolName, toolBase);
|
|
return ss;
|
|
}
|
|
|
|
int ShowFormState()
|
|
{
|
|
return QConfig::nFormState;
|
|
}
|
|
|
|
void SetFormState()
|
|
{
|
|
QConfig::nFormState = 0;
|
|
}
|