1 // Created on: 2001-06-26
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 LDOM_Attr_HeaderFile
17 #define LDOM_Attr_HeaderFile
18 
19 #include <LDOM_Node.hxx>
20 
21 class LDOM_BasicAttribute;
22 
23 //  Class LDOM_Attr
24 //
25 
26 class LDOM_Attr : public LDOM_Node
27 {
28  public:
29   // ---------- PUBLIC METHODS ----------
30 
LDOM_Attr()31   LDOM_Attr () {}
32   //    Empty constructor
33 
LDOM_Attr(const LDOM_Attr & anOther)34   LDOM_Attr (const LDOM_Attr& anOther) : LDOM_Node (anOther) {}
35   //    Copy constructor
36 
operator =(const LDOM_NullPtr * aNull)37   LDOM_Attr&            operator =      (const LDOM_NullPtr * aNull)
38                     { return (LDOM_Attr&) LDOM_Node::operator = (aNull); }
39   //    Nullify
40 
operator =(const LDOM_Attr & anOther)41   LDOM_Attr&            operator =      (const LDOM_Attr& anOther)
42                     { return (LDOM_Attr&) LDOM_Node::operator = (anOther); }
43   //    Assignment
44 
getName() const45   LDOMString            getName         () const { return getNodeName (); }
46 
getValue() const47   LDOMString            getValue        () const { return getNodeValue(); }
48 
49   Standard_EXPORT void  setValue        (const LDOMString& aValue);
50 
51  protected:
52   friend class LDOM_Element;
53   // ---------- PROTECTED METHODS ----------
54 
55   LDOM_Attr                             (const LDOM_BasicAttribute&     anAttr,
56                                          const Handle(LDOM_MemManager)& aDoc);
57 
58  private:
59   // ---------- PRIVATE FIELDS ----------
60 
61 };
62 
63 #endif
64