0025621: CAST analysis - Avoid constructors not supplying an initial value for all...
[occt.git] / src / LDOM / LDOM_BasicAttribute.cxx
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 #include <LDOM_BasicAttribute.hxx>
17 #include <LDOM_MemManager.hxx>
18
19 //=======================================================================
20 //function : LDOM_BasicAttribute
21 //purpose  : 
22 //=======================================================================
23
24 LDOM_BasicAttribute::LDOM_BasicAttribute (const LDOM_Attr& anAttr)
25      : LDOM_BasicNode   (anAttr.Origin()),
26        myName           (anAttr.getName().GetString()),
27        myValue          (anAttr.getValue()) {}
28
29 //=======================================================================
30 //function : Create
31 //purpose  : construction in the Document's data pool
32 //=======================================================================
33
34 LDOM_BasicAttribute& LDOM_BasicAttribute::Create
35                                         (const LDOMBasicString&         theName,
36                                          const Handle(LDOM_MemManager)& theDoc,
37                                          Standard_Integer&              theHash)
38 {
39   void * aMem = theDoc -> Allocate (sizeof(LDOM_BasicAttribute));
40   LDOM_BasicAttribute * aNewAtt = new (aMem) LDOM_BasicAttribute;
41
42   const char * aString = theName.GetString();
43   aNewAtt -> myName =
44     theDoc -> HashedAllocate (aString, (Standard_Integer)strlen(aString), theHash);
45
46   aNewAtt -> myNodeType = LDOM_Node::ATTRIBUTE_NODE;
47   return * aNewAtt;
48 }
49
50 //=======================================================================
51 //function : operator =
52 //purpose  : Assignment to NULL
53 //=======================================================================
54
55 LDOM_BasicAttribute& LDOM_BasicAttribute::operator= (const LDOM_NullPtr * aNull)
56 {
57   myName = NULL;
58   myValue = aNull;
59   LDOM_BasicNode::operator= (aNull);
60   return * this;
61 }