00001 #ifndef IGUANA_FRAMEWORK_IG_SITE_DB_H 00002 # define IGUANA_FRAMEWORK_IG_SITE_DB_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "Iguana/Framework/interface/config.h" 00007 # include "Iguana/Framework/interface/IgPluginFactory.h" 00008 00009 //<<<<<< PUBLIC DEFINES >>>>>> 00010 //<<<<<< PUBLIC CONSTANTS >>>>>> 00011 //<<<<<< PUBLIC TYPES >>>>>> 00012 00013 class IgSite; 00014 class IgState; 00015 00016 //<<<<<< PUBLIC VARIABLES >>>>>> 00017 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00018 //<<<<<< CLASS DECLARATIONS >>>>>> 00019 00020 class IGUANA_FRAMEWORK_API IgSiteDB 00021 : public IgPluginFactory<IgSite *(IgState *state, IgSite *parent)> 00022 { 00023 public: 00024 static IgSiteDB *get (void); 00025 00026 private: 00027 IgSiteDB (void); 00028 static IgSiteDB s_instance; 00029 }; 00030 00031 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00032 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00033 00034 #endif // IGUANA_FRAMEWORK_IG_SITE_DB_H