00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxImageRepRepository_h
00011 #define HxImageRepRepository_h
00012
00013 #include "HxImageRep.h"
00014 #include "HxRepositoryTem.h"
00015
00016
00017
00018
00019
00020 #pragma warning (disable : 4275)
00021
00022 class L_HXIMAGEREP HxImageRepRepository : public HxRepositoryTem<HxImageRep>
00023 {
00024 public:
00025 static HxImageRepRepository& instance();
00026 private:
00027 HxImageRepRepository();
00028 };
00029
00030 #pragma warning (default : 4275)
00031
00032 #endif