My Project
OSCommandLineReader.h
Go to the documentation of this file.
1/* $Id: OSCommandLineReader.h 4263 2011-09-09 20:19:26Z Gassmann $ */
17#ifndef _OSCOMMANDLINEREADER_H
18#define _OSCOMMANDLINEREADER_H
19
20
21#include "OSCommandLine.h"
22#include "OSErrorClass.h"
23
24
25#include <string>
26
27
40{
41
42
43public:
44
52
58
59
69 OSCommandLine *readCommandLine(const std::string& osss);
70
71
78 OSCommandLine *parseString(const std::string& osss);
79
80private:
85};
86#endif
This class is used to store command line options for the OSSolverService executable and to provide me...
The OSCommandLineReader Class.
~OSCommandLineReader()
OSCommandLineReader class destructor.
OSCommandLine * readCommandLine(const std::string &osss)
Get an OSCommandLine object from a command line string.
OSCommandLine * parseString(const std::string &osss)
Parse a string and store it into an OSCommandLine object.
OSCommandLine * m_oscommandline
m_oscommandline is the OSCommandLine object returned by the OSCommandLineReader
OSCommandLineReader()
OSCommandLineReader class constructor.