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 HxBlob2dRepository_h 00012 #define HxBlob2dRepository_h 00013 00014 #include "HxBlob2d.h" 00015 #include "HxRepositoryTem.h" 00016 00017 class HxBlob2dRepository : public HxRepositoryTem<HxBlob2d> 00018 { 00019 public: 00020 static HxBlob2dRepository& instance(); 00021 private: 00022 HxBlob2dRepository(); 00023 }; 00024 00025 #endif