00001 /* 00002 * Copyright (c) 2002, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * Author(s): 00006 * Dennis Koelma (koelma@science.uva.nl) 00007 */ 00008 00009 #ifndef HxImgFtorNgbExtraKey_h 00010 #define HxImgFtorNgbExtraKey_h 00011 00012 #include "HxString.h" 00013 #include "HxImgFtorI3CastKey.h" 00014 00015 00018 class L_HXIMAGEREP HxImgFtorNgbExtraKey : public HxImgFtorI3CastKey 00019 { 00020 public: 00022 HxImgFtorNgbExtraKey(HxString dstImgSig, HxString srcImgSig, 00023 HxString extraImgSig, HxString ngbName); 00024 00025 }; 00026 00027 inline 00028 HxImgFtorNgbExtraKey::HxImgFtorNgbExtraKey( 00029 HxString dstImgSig, HxString srcImgSig, HxString extraImgSig, HxString ngbName) 00030 : HxImgFtorI3CastKey("HxImgFtorNgb2dExtra", dstImgSig, srcImgSig, extraImgSig) 00031 { 00032 addArgument(ngbName); 00033 } 00034 00035 #endif