Overture  Version 25
OvertureParser.h
Go to the documentation of this file.
1 #ifndef NO_APP
2 #include "aString.H"
3 #else
4 #include "GUITypes.h"
5 #ifndef aString
6 #define aString std::string
7 #endif
8 #endif
9 //===============================================================================================
10 // Class for parsing commands using perl
11 //===============================================================================================
12 
14 {
15 public:
16 OvertureParser(int argc=0, char **argv=0);
18 
19 int parse(aString & answer);
20 
21 static int debug; // set to a positive value to get debug info
22 
23 private:
24 void *parserPointer; // make this a void pointer to avoid exposing other Overture code to the perl include files.
25 
26 };