00001 /* 00002 * Copyright (c) 1998, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * 00006 * Author(s): 00007 * Dennis Koelma (koelma@wins.uva.nl) 00008 * Edo Poll (poll@wins.uva.nl) 00009 */ 00010 00011 #ifndef HxImageSeqRepository_h 00012 #define HxImageSeqRepository_h 00013 00014 00015 #include "HxImageSeq.h" 00016 #include "HxRepositoryTem.h" 00017 00018 class HxImageSeqRepository : public HxRepositoryTem<HxImageSeq> 00019 { 00020 public: 00021 static HxImageSeqRepository& instance(); 00022 00023 private: 00024 HxImageSeqRepository(); 00025 }; 00026 00027 00028 #endif