📄 reductshortener.cpp
字号:
//-------------------------------------------------------------------// Author........: Aleksander 豩rn// Date..........: 960419// Description...:// Revisions.....://===================================================================#include <stdafx.h> // Precompiled headers.#include <copyright.h>#include <kernel/algorithms/reductshortener.h>//-------------------------------------------------------------------// Methods for class ReductShortener.//===================================================================//-------------------------------------------------------------------// Constructors/destructor.//===================================================================ReductShortener::ReductShortener() {}ReductShortener::~ReductShortener() {}//-------------------------------------------------------------------// Methods inherited from Identifier.//===================================================================IMPLEMENTIDMETHODS(ReductShortener, REDUCTSHORTENER, ReductFilter)//-------------------------------------------------------------------// Methods inherited from Algorithm.//===================================================================//-------------------------------------------------------------------// Method........: GetParameters// Author........: Aleksander 豩rn// Date..........:// Description...:// Comments......:// Revisions.....://===================================================================StringReductShortener::GetParameters() const { return ReductFilter::GetParameters();}//-------------------------------------------------------------------// Method........: SetParameter// Author........: Aleksander 豩rn// Date..........:// Description...:// Comments......:// Revisions.....://===================================================================boolReductShortener::SetParameter(const String &keyword, const String &value) { return ReductFilter::SetParameter(keyword, value);}//-------------------------------------------------------------------// Method........: Apply// Author........: Aleksander 豩rn// Date..........:// Description...: Blocks default implementation from Filter class.// Comments......:// Revisions.....://===================================================================Structure *ReductShortener::Apply(Structure &/*structure*/) const { return NULL;}//-------------------------------------------------------------------// Methods inherited from Filter.//===================================================================//-------------------------------------------------------------------// Method........: Remove// Author........: Aleksander 豩rn// Date..........:// Description...: Dummy implementation, not in use.// Comments......:// Revisions.....://===================================================================boolReductShortener::Remove(const Structures &/*structures*/, int /*i*/) const { return false;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -