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 HxImgFtorIMKey_h 00013 #define HxImgFtorIMKey_h 00014 00015 #include "HxImgFtorKey.h" 00016 00017 00020 class L_HXIMAGEREP HxImgFtorIMKey : public HxImgFtorKey 00021 { 00022 public: 00024 HxImgFtorIMKey(HxString className, HxString sig1Name, HxString sig2Name); 00025 }; 00026 00027 inline 00028 HxImgFtorIMKey::HxImgFtorIMKey( 00029 HxString className, HxString sig1Name, HxString sig2Name) 00030 : HxImgFtorKey(className) 00031 { 00032 HxStringList l; 00033 l << sig1Name << sig2Name; 00034 setArguments(l.begin(), l.end()); 00035 } 00036 00037 #endif