⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 complierfactory.cpp

📁 自动化编译工具代码
💻 CPP
字号:
// ComplierFactory.cpp: implementation of the CComplierFactory class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ComplierFactory.h"

#include "ComplierVC60CL.h"
#include "ComplierVCNETCL.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CComplierFactory::CComplierFactory()
{

}

CComplier * CComplierFactory::CreateComplierVC60()
{
	return new CComplierVC60CL();
}

CComplier * CComplierFactory::CreateComplierVCNET(CComplier::NetVersion version)
{
	return new CComplierVCNETCL(version);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -