📄 cprocessfactory.h
字号:
// $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -