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