?? reductshortener.h
字號:
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........: 960419
// Description...:
// Revisions.....:
//===================================================================
#ifndef __REDUCTSHORTENER_H__
#define __REDUCTSHORTENER_H__
#include <copyright.h>
#include <kernel/algorithms/reductfilter.h>
//-------------------------------------------------------------------
// Class.........: ReductShortener
// Author........: Aleksander 豩rn
// Date..........: 950420
// Description...:
// Revisions.....: Inherits from ReductFilter instead of Algorithm.
//===================================================================
class ReductShortener : public ReductFilter {
protected:
//- Methods inherited from Filter..................................
virtual bool Remove(const Structures &structures, int i) const;
public:
//- Constructors/destructor........................................
ReductShortener();
virtual ~ReductShortener();
//- Methods inherited from Identifier..............................
DECLAREIDMETHODS()
//- Methods inherited from Algorithm...............................
virtual String GetParameters() const;
virtual bool SetParameter(const String &keyword, const String &value);
virtual Structure *Apply(Structure &structure) const;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -