00001 #ifndef IGUANA_WEB_FRAMEWORK_IG_WEB_SERVICE_PROXY_H 00002 # define IGUANA_WEB_FRAMEWORK_IG_WEB_SERVICE_PROXY_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "Iguana/WebFramework/interface/config.h" 00007 # include "Iguana/WebFramework/interface/IgWebServiceDB.h" 00008 00009 //<<<<<< PUBLIC DEFINES >>>>>> 00010 //<<<<<< PUBLIC CONSTANTS >>>>>> 00011 //<<<<<< PUBLIC TYPES >>>>>> 00012 00013 class IgWebService; 00014 00015 //<<<<<< PUBLIC VARIABLES >>>>>> 00016 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00017 //<<<<<< CLASS DECLARATIONS >>>>>> 00018 00019 class IGUANA_WEB_FRAMEWORK_API IgWebServiceProxy 00020 { 00021 public: 00022 typedef IgWebServiceDB::Map::mapped_type PluginInfo; 00023 IgWebServiceProxy (IgState *state, PluginInfo pluginInfo); 00024 // implicit copy constructor 00025 // implicit assignment operator 00026 // implicit destructor 00027 IgWebService *webService (void); 00028 private: 00029 IgState * m_state; 00030 PluginInfo m_pluginInfo; 00031 IgWebService * m_webService; 00032 }; 00033 00034 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00035 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00036 00037 #endif // IGUANA_WEB_FRAMEWORK_IG_WEB_SERVICE_PROXY_H