⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reductshortener.cpp

📁 The ROSETTA C++ library is a collection of C++ classes and routines that enable discernibility-based
💻 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 + -