(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.3 and 1.9

version 1.1.2.3, 2001/12/03 00:08:00 version 1.9, 2005/02/05 23:00:52
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 31 
Line 37 
 #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/Common/ArrayInternal.h>
 #include <Pegasus/WQL/WQLSelectStatement.h> #include <Pegasus/WQL/WQLSelectStatement.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   /** This is an internal structure used for holding parser state information
       during parsing (while inside the WQLParser::parse() method). Instances
       of this class are created and destroyed by WQLParser::parse().
   */
 struct WQLParserState struct WQLParserState
 { {
     WQLParserState() { }  
   
     //     //
     // Text containing SELECT statement (must be null-terminated).     // Text containing SELECT statement (must be null-terminated).
     //     //
  
     Array<Sint8> text;      const char* text;
   
       //
       // Size in bytes (including null terminator) of the text.
       //
   
       Uint32 textSize;
  
     //     //
     // Offset to current parser position in the above text.     // Offset to current parser position in the above text.
Line 53 
Line 67 
     Uint32 offset;     Uint32 offset;
  
     //     //
     // The output object being initialized during parsing.      // The output object being initialized during parsing. This object is
       // set to point to the statement argument passed to the WQLParser::parse()
       // method.
     //     //
  
     WQLSelectStatement* statement;     WQLSelectStatement* statement;


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2