OS  2.9.3
OSiLReader.h
Go to the documentation of this file.
1 /* $Id: OSiLReader.h 4829 2014-07-28 19:14:53Z Gassmann $ */
17 #ifndef OSILREADER_H
18 #define OSILREADER_H
19 
20 #include "OSInstance.h"
21 #include "OSiLParserData.h"
22 #include "OSgLParserData.h"
23 #include "OSnLParserData.h"
24 #include "OSErrorClass.h"
25 
26 #include <string>
27 
28 
38 {
39 
40 public:
41 
45  OSiLReader( );
46 
50  ~OSiLReader();
51 
60  OSInstance* readOSiL(const std::string& osil) throw(ErrorClass);
61 
62 private:
66  OSInstance *m_osinstance;
67 
70  OSiLParserData *m_parserData;
71 
75  OSgLParserData *m_osglData;
76 
80  OSnLParserData *m_osnlData;
81 };
82 
83 
84 
85 #endif
used for throwing exceptions.
Definition: OSErrorClass.h:31
The OSiLParserData Class, used to store parser data.
OSiLReader()
Default constructor.
The in-memory representation of an OSiL instance.
Definition: OSInstance.h:2241
Used to read an OSiL string.
Definition: OSiLReader.h:37
~OSiLReader()
Class destructor.
This file defines the OSInstance class along with its supporting classes.
The OSnLParserData Class.
The OSgLParserData Class.
OSInstance * readOSiL(const std::string &osil)
parse the OSiL model instance.