OS  2.9.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
OSrLWriter.h
Go to the documentation of this file.
1 /* $Id: OSrLWriter.h 4263 2011-09-09 20:19:26Z Gassmann $ */
17 #ifndef OSrLWRITER_H
18 #define OSrLWRITER_H
19 
20 #include "OSResult.h"
21 #include <string>
22 
23 
24 
31 {
32 private:
37  OSResult *m_OSResult;
38 public:
39 
44  OSrLWriter( );
45 
50  ~OSrLWriter();
51 
59  std::string writeOSrL( OSResult *theosresult);
60 
61 
66 
70 
74  std::string m_sB64encoded;
83  //char* writeOSrLWrap( OSResult *theosresult);
84 };
85 #endif
OSrLWriter()
Default constructor.
std::string writeOSrL(OSResult *theosresult)
create an osrl string from an OSResult object
Take an OSResult object and write a string that validates against OSrL.
Definition: OSrLWriter.h:30
std::string m_sB64encoded
m_sB64encoded is a string of data (start, colIdx, rowIdx, or values) from linear constraints coeffici...
Definition: OSrLWriter.h:74
~OSrLWriter()
Class destructor.
bool m_bWhiteSpace
m_bWhiteSpace is set to true if we write white space in the file
Definition: OSrLWriter.h:69
bool m_bWriteBase64
m_bWriteBase64 is set to true if we encode the linear constraint coefficients in base64 binary ...
Definition: OSrLWriter.h:65
The Result Class.
Definition: OSResult.h:2312