00001 #ifndef EXPAT_RTSP_PROXY_H 00002 #define EXPAT_RTSP_PROXY_H 00003 00004 #include "EConfInt.h" 00005 #include "EConfString.h" 00006 #include "EConfBase.h" 00007 00028 struct EConfRtspProxy : public EConfBase 00029 { 00030 EConfString _host; 00031 EConfInt _port; 00032 public: 00033 EConfRtspProxy( ); 00034 00035 virtual bool start_child_element( const char* name, const char** atts, XML_Parser p ); 00036 00037 virtual bool end_child_element( const char* name, XML_Parser p ); 00038 bool begin_parse( const char* name, const char** atts, XML_Parser p ); 00039 virtual void dump( int depth, ostream& ostr, bool complete ); 00040 00041 void specialize( const EConfRtspProxy& o ); 00042 00043 private: 00044 EConfRtspProxy( const EConfRtspProxy& ); 00045 EConfRtspProxy& operator=( const EConfRtspProxy& ); 00046 }; 00047 00049 00050 #endif /* EXPAT_RTSP_PROXY_H */ 00051