Warnings on vc14 were eliminated
[occt.git] / src / LDOM / LDOM_Attr.hxx
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 class LDOM_Element;
23
24 //  Class LDOM_Attr
25 //
26
27 class LDOM_Attr : public LDOM_Node
28 {
29  public:
30   // ---------- PUBLIC METHODS ----------
31
32   LDOM_Attr () {}
33   //    Empty constructor
34
35   LDOM_Attr (const LDOM_Attr& anOther) : LDOM_Node (anOther) {}
36   //    Copy constructor
37
38   LDOM_Attr&            operator =      (const LDOM_NullPtr * aNull)
39                     { return (LDOM_Attr&) LDOM_Node::operator = (aNull); }
40   //    Nullify
41
42   LDOM_Attr&            operator =      (const LDOM_Attr& anOther)
43                     { return (LDOM_Attr&) LDOM_Node::operator = (anOther); }
44   //    Assignment
45
46   LDOMString            getName         () const { return getNodeName (); }
47
48   LDOMString            getValue        () const { return getNodeValue(); }
49
50   Standard_EXPORT void  setValue        (const LDOMString& aValue);
51
52  protected:
53   friend class LDOM_Element;
54   // ---------- PROTECTED METHODS ----------
55
56   LDOM_Attr                             (const LDOM_BasicAttribute&     anAttr,
57                                          const Handle(LDOM_MemManager)& aDoc);
58
59  private:
60   // ---------- PRIVATE FIELDS ----------
61
62 };
63
64 #endif