compiler.h

来自「这个也是我们的毕业设计课题」· C头文件 代码 · 共 22 行

H
22
字号
// Compiler.h: interface for the CCompiler class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_COMPILER_H__DF370D1D_413F_4033_AAD4_2AF760AEAA1B__INCLUDED_)
#define AFX_COMPILER_H__DF370D1D_413F_4033_AAD4_2AF760AEAA1B__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "fileheader.h"
class CCompiler  
{
public:
	CCompiler();
	virtual ~CCompiler();
	void Compile(CString strSource,CFile* pdfFile,CFile* DFYexeFile);

};

#endif // !defined(AFX_COMPILER_H__DF370D1D_413F_4033_AAD4_2AF760AEAA1B__INCLUDED_)

⌨️ 快捷键说明

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