00001 /* $Id: OSrLWriter.h 4292 2011-09-21 05:47:18Z kmartin $ */ 00017 #ifndef OSrLWRITER_H 00018 #define OSrLWRITER_H 00019 00020 #include "OSResult.h" 00021 #include <string> 00022 00023 00024 00030 class OSrLWriter 00031 { 00032 private: 00037 OSResult *m_OSResult; 00038 public: 00039 00044 OSrLWriter( ); 00045 00050 ~OSrLWriter(); 00051 00059 std::string writeOSrL( OSResult *theosresult); 00060 00061 00065 bool m_bWriteBase64; 00066 00069 bool m_bWhiteSpace; 00070 00074 std::string m_sB64encoded; 00083 //char* writeOSrLWrap( OSResult *theosresult); 00084 }; 00085 #endif