cprocessfactory.h

来自「日本的开源编辑器源码」· C头文件 代码 · 共 45 行

H
45
字号
//	$Id: CProcessFactory.h,v 1.1 2002/02/01 13:44:14 eringm Exp $
/*!	@file
	@brief プロセス生成クラスヘッダファイル

	@author aroka
	@date	2002/01/08 作成
	$Revision: 1.1 $
*/
/*
	Copyright (C) 2002, aroka 新規作成

	This source code is designed for sakura editor.
	Please contact the copyright holder to use this code for other purpose.
*/

#ifndef _CPROCESSFACTORY_H_
#define _CPROCESSFACTORY_H_

#include "global.h"

class CProcess;

/*-----------------------------------------------------------------------
クラスの宣言
-----------------------------------------------------------------------*/
/*!
	@brief プロセス生成クラス
*/
class SAKURA_CORE_API CProcessFactory {
public:
	CProcess* Create( HINSTANCE hInstance, LPSTR lpCmdLine );
protected:
private:
	bool IsValidVersion();
	bool IsStartingControlProcess();
	bool IsExistControlProcess();
	bool StartControlProcess();
};

///////////////////////////////////////////////////////////////////////
#endif /* _CPROCESSFACTORY_H_ */

/*[EOF]*/

⌨️ 快捷键说明

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