00001 /* 00002 * Copyright (c) 1999, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * Author(s): 00006 * Jan-Mark Geusebroek (mark@wins.uva.nl) 00007 * Edo Poll (poll@wins.uva.nl) 00008 * Marc Navarro (mnavarro@wins.uva.nl) 00009 * Dennis Koelma (koelma@wins.uva.nl) 00010 */ 00011 00012 #ifndef HxImgFtorMpoKey_h 00013 #define HxImgFtorMpoKey_h 00014 00015 #include "HxString.h" 00016 #include "HxImgFtorIMCastKey.h" 00017 00018 00021 class L_HXIMAGEREP HxImgFtorMpoKey : public HxImgFtorIMCastKey 00022 { 00023 public: 00025 HxImgFtorMpoKey(HxString dstImgSig, HxString srcImgsSig, HxString mpoName); 00026 }; 00027 00028 inline 00029 HxImgFtorMpoKey::HxImgFtorMpoKey( 00030 HxString dstImgSig, HxString srcImgsSig, HxString mpoName) 00031 : HxImgFtorIMCastKey("HxImgFtorMpo", dstImgSig, srcImgsSig) 00032 { 00033 addArgument(mpoName); 00034 } 00035 00036 #endif