00001 /* 00002 * Copyright (c) 2002, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * Author(s): 00006 * Frans Verster (verster@science.uva.nl) 00007 */ 00008 00009 00010 #ifndef HxImgFtorQueueBasedKey_h 00011 #define HxImgFtorQueueBasedKey_h 00012 00013 #include "HxString.h" 00014 #include "HxImgFtorI3CastKey.h" 00015 00018 class L_HXIMAGEREP HxImgFtorQueueBasedKey : public HxImgFtorI3CastKey 00019 { 00020 public: 00021 HxImgFtorQueueBasedKey( 00022 HxString imgSig, HxString extraSig, 00023 HxString kerImgSig, HxString FunctorName); 00024 }; 00025 00026 00027 inline 00028 HxImgFtorQueueBasedKey::HxImgFtorQueueBasedKey( 00029 HxString imgSig, HxString extraSig, 00030 HxString kerImgSig, HxString FunctorName) : 00031 HxImgFtorI3CastKey("HxImgFtorQueueBased", imgSig, extraSig, kerImgSig) 00032 { 00033 addArgument(FunctorName); 00034 } 00035 00036 #endif