0024624: Lost word in license statement in source files
[occt.git] / src / PCDM / PCDM_DOMHeaderParser.hxx
1 // Created on: 2001-07-30
2 // Created by: Alexander GRIGORIEV
3 // Copyright (c) 2001-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef PCDM_DOMHeaderParser_HeaderFile
17 #define PCDM_DOMHeaderParser_HeaderFile
18
19 #include <LDOMParser.hxx>
20
21 //  Block of comments describing class PCDM_DOMHeaderParser
22
23 class PCDM_DOMHeaderParser : public LDOMParser
24 {
25  public:
26   // ---------- PUBLIC METHODS ----------
27
28   void SetStartElementName   (const TCollection_AsciiString& aStartElementName);
29   //    set the name of the element which would stop parsing when detected
30
31   void SetEndElementName     (const TCollection_AsciiString& anEndElementName);
32   //    set the name of the element which would stop parsing when parsed
33
34   Standard_Boolean startElement ();
35   //    redefined method from LDOMParser
36   //    stops parsing when the attributes of header element have been read
37
38   Standard_Boolean endElement ();
39   //    redefined method from LDOMParser
40   //    stops parsing when the info element with all sub-elements has been read
41
42   const LDOM_Element& GetElement () const { return myElement; }
43   //    returns the LDOM_Element containing data about file format
44
45  private:
46   // ---------- PRIVATE FIELDS ----------
47
48   LDOM_Element          myElement;
49   LDOMString            myStartElementName;
50   LDOMString            myEndElementName;
51 };
52
53 #endif