00001 #ifndef IGUANA_FRAMEWORK_IG_BROWSER_DB_H 00002 # define IGUANA_FRAMEWORK_IG_BROWSER_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 IgBrowser; 00014 class IgState; 00015 class IgSite; 00016 00017 //<<<<<< PUBLIC VARIABLES >>>>>> 00018 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00019 //<<<<<< CLASS DECLARATIONS >>>>>> 00020 00021 class IGUANA_FRAMEWORK_API IgBrowserDB 00022 : public IgPluginFactory<IgBrowser *(IgState *state, IgSite *host)> 00023 { 00024 public: 00025 static IgBrowserDB *get (void); 00026 00027 private: 00028 IgBrowserDB (void); 00029 static IgBrowserDB s_instance; 00030 }; 00031 00032 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00033 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00034 00035 #endif // IGUANA_FRAMEWORK_IG_BROWSER_DB_H