#include <HxImgFunctor.h>
Inheritance diagram for HxImgFunctor::
Public Methods | |
HxImgFunctor (const HxImgFtorKey &) | |
Constructor. More... | |
virtual | ~HxImgFunctor () |
Destructor. More... | |
virtual STD_OSTREAM & | put (STD_OSTREAM &) const |
Put on stream. More... | |
virtual bool | probeOp (HxTagList &) const |
Some operator instantiations can be queried for pre-condition information. More... | |
Protected Methods | |
HxImgFtorDescription * | getDescription () const |
|
Constructor.
00018 { 00019 HxImgFtorTable::instance().insert(key,this); 00020 _key = key; 00021 } |
|
Destructor.
00024 { 00025 // To do: remove from table 00026 } |
|
Put on stream.
00036 { 00037 return os << _key; 00038 } |
|
Some operator instantiations can be queried for pre-condition information.
Reimplemented in HxImgFtorKernelNgb2d, HxImgFtorMNpo, HxImgFtorNgb2d, HxImgFtorNgb2dExtra, and HxImgFtorNgb2dExtra2.
00030 { 00031 return true; 00032 } |