00001 /* 00002 * Copyright (c) 1999, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * Author(s): 00006 * Edo Poll (poll@wins.uva.nl) 00007 * Marc Navarro (mnavarro@wins.uva.nl) 00008 * Dennis Koelma (koelma@wins.uva.nl) 00009 */ 00010 00011 #ifndef HxImgFtorUpoKey_h 00012 #define HxImgFtorUpoKey_h 00013 00014 #include "HxString.h" 00015 #include "HxImgFtorI2CastKey.h" 00016 00017 00020 class L_HXIMAGEREP HxImgFtorUpoKey : public HxImgFtorI2CastKey 00021 { 00022 public: 00024 HxImgFtorUpoKey(HxString dstImgSig, HxString srcImgSig, HxString upoName); 00025 }; 00026 00027 inline 00028 HxImgFtorUpoKey::HxImgFtorUpoKey( 00029 HxString dstImgSig, HxString srcImgSig, HxString upoName) 00030 : HxImgFtorI2CastKey("HxImgFtorUpo", dstImgSig, srcImgSig) 00031 { 00032 addArgument(upoName); 00033 } 00034 00035 #endif