00001 /* $Id: OSrLWriter.h 4120 2011-03-30 06:28:16Z kmartin $ */ 00017 #ifndef OSrLWRITER_H 00018 #define OSrLWRITER_H 00019 00020 #include "OSResult.h" 00021 #include <string> 00022 00023 00024 00030 class OSrLWriter{ 00031 private: 00036 OSResult *m_OSResult; 00037 public: 00038 00043 OSrLWriter( ); 00044 00049 ~OSrLWriter(); 00050 00058 std::string writeOSrL( OSResult *theosresult); 00059 00060 00064 bool m_bWriteBase64; 00065 00068 bool m_bWhiteSpace; 00069 00073 std::string m_sB64encoded; 00082 //char* writeOSrLWrap( OSResult *theosresult); 00083 }; 00084 #endif