My Project
OSrLWriter.h
Go to the documentation of this file.
1/* $Id$ */
17#ifndef OSrLWRITER_H
18#define OSrLWRITER_H
19
20#include "OSResult.h"
21#include <string>
22
23
24
31{
32private:
38public:
39
44 OSrLWriter( );
45
51
59 std::string writeOSrL( OSResult *theosresult);
60
61
66
70
74 std::string m_sB64encoded;
83 //char* writeOSrLWrap( OSResult *theosresult);
84};
85#endif
The Result Class.
Definition OSResult.h:2549
Take an OSResult object and write a string that validates against OSrL.
Definition OSrLWriter.h:31
std::string writeOSrL(OSResult *theosresult)
create an osrl string from an OSResult object
bool m_bWhiteSpace
m_bWhiteSpace is set to true if we write white space in the file
Definition OSrLWriter.h:69
OSResult * m_OSResult
m_OSResult is an object in the class OSResult, the data in m_OSResult are written to a string that va...
Definition OSrLWriter.h:37
~OSrLWriter()
Class destructor.
std::string m_sB64encoded
m_sB64encoded is a string of data (start, colIdx, rowIdx, or values) from linear constraints coeffici...
Definition OSrLWriter.h:74
bool m_bWriteBase64
m_bWriteBase64 is set to true if we encode the linear constraint coefficients in base64 binary
Definition OSrLWriter.h:65
OSrLWriter()
Default constructor.