(file) Return to WQLParserState.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / WQL

Diff for /pegasus/src/Pegasus/WQL/WQLParserState.h between version 1.1.2.2 and 1.1.2.3

version 1.1.2.2, 2001/12/02 22:03:23 version 1.1.2.3, 2001/12/03 00:08:00
Line 31 
Line 31 
 #define Pegasus_WQLParserState_h #define Pegasus_WQLParserState_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/Array.h>
 #include <Pegasus/WQL/WQLSelectStatement.h> #include <Pegasus/WQL/WQLSelectStatement.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
Line 39 
Line 40 
 { {
     WQLParserState() { }     WQLParserState() { }
  
       //
       // Text containing SELECT statement (must be null-terminated).
       //
   
     Array<Sint8> text;     Array<Sint8> text;
   
       //
       // Offset to current parser position in the above text.
       //
   
     Uint32 offset;     Uint32 offset;
   
       //
       // The output object being initialized during parsing.
       //
   
     WQLSelectStatement* statement;     WQLSelectStatement* statement;
   
       //
       // Set to true when there is an error (set by WQL_error()).
       //
   
     Boolean error;     Boolean error;
   
       //
       // Error message if any (set by WQL_error()).
       //
   
     String errorMessage;     String errorMessage;
   
       //
       // A list of strings created by lexer. These are deleted by the
       // WQLParser when cleaning up in the parse() method. It is not possible
       // to reliably clean them up anywhere else due to potential parse errors
       // which prevent YACC actions (which might attempt to free them) from
       // being reached. These strings are outstanding in the sense that they
       // need to be cleaned up (not in the sense that they are excellent examples
       // of strings).
       //
   
       Array<char*> outstandingStrings;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2