00001 #ifndef IGUANA_WEB_FRAMEWORK_IG_SOCKET_DRIVER_H 00002 # define IGUANA_WEB_FRAMEWORK_IG_SOCKET_DRIVER_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 #include "Iguana/WebFramework/interface/config.h" 00007 #include "Iguana/Framework/interface/IgDriver.h" 00008 00009 //<<<<<< PUBLIC DEFINES >>>>>> 00010 //<<<<<< PUBLIC CONSTANTS >>>>>> 00011 //<<<<<< PUBLIC TYPES >>>>>> 00012 00013 class IgState; 00014 00015 //<<<<<< PUBLIC VARIABLES >>>>>> 00016 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00017 //<<<<<< CLASS DECLARATIONS >>>>>> 00018 00019 class IgSocketDriver : public IgDriver 00020 { 00021 public: 00022 IgSocketDriver (IgState *state); 00023 // implicit copy constructor 00024 // implicit assignment operator 00025 // implicit destructor 00026 virtual int run (void); 00027 static const char * catalogLabel (void); 00028 private: 00029 IgState *m_state; 00030 }; 00031 00032 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00033 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00034 00035 #endif // IGUANA_WEB_FRAMEWORK_IG_SOCKET_DRIVER_H