00001 /* $Id: OSrLWriter.h 3815 2010-11-03 23:46:16Z Gassmann $ */ 00019 #ifndef OSrLWRITER_H 00020 #define OSrLWRITER_H 00021 00022 #include "OSResult.h" 00023 #include <string> 00024 00025 00026 00032 class OSrLWriter{ 00033 private: 00038 OSResult *m_OSResult; 00039 public: 00040 00045 OSrLWriter( ); 00046 00051 ~OSrLWriter(); 00052 00060 std::string writeOSrL( OSResult *theosresult); 00061 00062 00066 bool m_bWriteBase64; 00067 00070 bool m_bWhiteSpace; 00071 00075 std::string m_sB64encoded; 00084 //char* writeOSrLWrap( OSResult *theosresult); 00085 }; 00086 #endif