#include <HxImgFtorDiy.h>
Inheritance diagram for HxImgFtorDiy::
Public Types | |
typedef HxImgFtorDiyKey | KeyType |
The key type of this class. More... | |
Public Methods | |
HxImgFtorDiy () | |
Constructor. More... | |
virtual | ~HxImgFtorDiy () |
Destructor. More... | |
Protected Methods | |
virtual void | doIt (Img1DataPtrType dstPtr, Img2DataPtrType srcPtr, HxSizes dstSize, HxSizes srcSize, HxTagList &tags, HxImgFtorDescription *description=0) |
Do it. More... |
Template parameters:
|
The key type of this class.
Reimplemented from HxImgFtorI2Cast. |
|
Constructor.
00018 : HxImgFtorI2Cast<DstImgSigT, SrcImgSigT>( 00019 HxImgFtorDiyKey( 00020 HxClassName<DstImgSigT>(), HxClassName<SrcImgSigT>(), 00021 HxClassName<DiyT>())) 00022 { 00023 HxImgFtorRuleBase::instance().setResultType( 00024 HxClassName<DstImgSigT>(), "diy", 00025 HxClassName<SrcImgSigT>(), HxClassName<DiyT>()); 00026 00027 } |
|
Destructor.
00031 { 00032 } |
|
Do it.
Reimplemented from HxImgFtorI2Cast.
00041 { 00042 DiyT diy(tags); 00043 00044 diy.doIt(dstPtr, srcPtr, dstSize, srcSize); 00045 } |