reductshortener.cpp

来自「The ROSETTA C++ library is a collection 」· C++ 代码 · 共 96 行

CPP
96
字号
//-------------------------------------------------------------------// 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 + =
减小字号Ctrl + -
显示快捷键?