00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef HxImgFtorUpo_h
00012 #define HxImgFtorUpo_h
00013
00014 #include "HxSizes.h"
00015 #include "HxImgFtorUpoKey.h"
00016 #include "HxImgFtorI2Cast.h"
00017
00018 #include "HxTagList.h"
00019
00020
00030 template <class DstImgSigT, class SrcImgSigT, class UpoT>
00031 class L_HXIMAGEREP HxImgFtorUpo : public HxImgFtorI2Cast<DstImgSigT, SrcImgSigT>
00032 {
00033 public:
00034
00036 typedef HxImgFtorUpoKey KeyType;
00037
00039 HxImgFtorUpo();
00040
00042 virtual ~HxImgFtorUpo();
00043
00044 protected:
00046 virtual void doIt(
00047 Img1DataPtrType dstPtr, Img2DataPtrType srcPtr,
00048 HxSizes dstSize, HxSizes srcSize,
00049 HxTagList &tags, HxImgFtorDescription* description = 0);
00050
00051 private:
00052 HxImgFtorUpo(const HxImgFtorUpo&);
00053 };
00054
00055 #ifdef INC_TEMPLATE_SRC
00056 #include "HxImgFtorUpo.c"
00057 #endif
00058
00059 #endif