6 Star 3 Fork 0

阿甘 / CTestAutoJudge

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoprogramJudge.~cpp 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
阿甘 提交于 2022-01-12 10:16 . 添加了忽略文件列表
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM("mainformunit.cpp", FormMain);
USEFORM("formkeywordunit.cpp", FormKeyword);
USEFORM("About.cpp", AboutBox);
USEFORM("frmselectstudir.cpp", FrmSelectOneStuDir);
USEFORM("frmsettestcase.cpp", FrmTestCase);
USEFORM("FormHelp.cpp", FrmHelp);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "C/C++ľϵͳ";
Application->CreateForm(__classid(TFormMain), &FormMain);
Application->CreateForm(__classid(TFormKeyword), &FormKeyword);
Application->CreateForm(__classid(TAboutBox), &AboutBox);
Application->CreateForm(__classid(TFrmSelectOneStuDir), &FrmSelectOneStuDir);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
C++
1
https://gitee.com/gancaijun/CTestAutoJudge.git
git@gitee.com:gancaijun/CTestAutoJudge.git
gancaijun
CTestAutoJudge
CTestAutoJudge
develop

搜索帮助