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
00023 template <class DstImgSigT, class SrcImgSigT, class UpoT>
00024 class L_HXIMAGEREP HxImgFtorUpo : public HxImgFtorI2Cast<DstImgSigT, SrcImgSigT>
00025 {
00026 public:
00027
00029 typedef HxImgFtorUpoKey KeyType;
00030
00032 HxImgFtorUpo();
00033
00035 virtual ~HxImgFtorUpo();
00036
00037 protected:
00039 virtual void doIt(
00040 DstDataPtrType dstPtr, SrcDataPtrType srcPtr,
00041 HxSizes dstSize, HxSizes srcSize,
00042 HxTagList &tags, HxImgFtorDescription* = 0);
00043
00044 private:
00045 HxImgFtorUpo(const HxImgFtorUpo&);
00046 };
00047
00048 #ifdef INC_TEMPLATE_SRC
00049 #include "HxImgFtorUpo.c"
00050 #endif
00051
00052 #endif