reductshortener.cpp
来自「粗糙集应用软件」· 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.....:
//===================================================================
String
ReductShortener::GetParameters() const {
return ReductFilter::GetParameters();
}
//-------------------------------------------------------------------
// Method........: SetParameter
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Comments......:
// Revisions.....:
//===================================================================
bool
ReductShortener::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.....:
//===================================================================
bool
ReductShortener::Remove(const Structures &/*structures*/, int /*i*/) const {
return false;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?