📄 kr_actionoption.h
字号:
/*
* Created on 30 apr. 2004
*
* @author DigitalAirways (c) 2004
*
* This software is the confidential and proprietary information of
* DigitalAirways, sarl. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with DigitalAirways.
* A copy of this license is included in the licence.txt file included
* on this software package.
*
*
*/
#ifndef __KR_ACTIONOPTION__
#define __KR_ACTIONOPTION__
#include "KR_Option.h"
class ActionOption : public Option
{
private:
public:
INSTANCIATOR(ActionOption);
DEFINE_NEW(ActionOption);
DEFINE_DELETE(ActionOption);
ActionOption(GContext* newGContext) : Option(newGContext) {;}
virtual boolean isHandleAccept()
{
return true;
}
virtual void doAccept()
{
// Verbose( VERB_LEV_DEBUG, "BUILT-IN ActionOption has been accepted in group %s (%ld/%ld).\n", fGroup->fName, fGroupId, fGroupIndex) ;
Option::doAccept() ;
}
} ;
#endif // ndef __KR_ACTIONOPTION__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -