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