00001 /* 00002 * Copyright (c) 2001, 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 HxImgFtorMNpoKey_h 00013 #define HxImgFtorMNpoKey_h 00014 00015 #include "HxString.h" 00016 #include "HxImgFtorIMNCastKey.h" 00017 00018 00021 class L_HXIMAGEREP HxImgFtorMNpoKey : public HxImgFtorIMNCastKey 00022 { 00023 public: 00025 HxImgFtorMNpoKey(HxString dstImgsSig, HxString srcImgsSig, HxString mpoName); 00026 }; 00027 00028 inline 00029 HxImgFtorMNpoKey::HxImgFtorMNpoKey( 00030 HxString dstImgsSig, HxString srcImgsSig, HxString mpoName) 00031 : HxImgFtorIMNCastKey("HxImgFtorMNpo", dstImgsSig, srcImgsSig) 00032 { 00033 addArgument(mpoName); 00034 } 00035 00036 #endif