33 lines
501 B
C++
33 lines
501 B
C++
#include "GetContourPoints.h"
|
|
#include "frmGetContourPoints.h"
|
|
|
|
GetContourPoints::GetContourPoints()
|
|
{
|
|
}
|
|
|
|
QString GetContourPoints::name()
|
|
{
|
|
return "삿혤긋썹듐";
|
|
}
|
|
|
|
QString GetContourPoints::information()
|
|
{
|
|
return "섯부묏야";
|
|
}
|
|
|
|
QDialog* showDialog(QString toolName, QToolBase* toolBase)
|
|
{
|
|
frmGetContourPoints* ss = new frmGetContourPoints(toolName, toolBase);
|
|
return ss;
|
|
}
|
|
|
|
int ShowFormState()
|
|
{
|
|
return QConfig::nFormState;
|
|
}
|
|
|
|
void SetFormState()
|
|
{
|
|
QConfig::nFormState = 0;
|
|
}
|