0024186: Eliminate remaining compiler warnings in MSVC++ 2010 64 bit with warning...
[occt.git] / src / LDOM / LDOM_BasicAttribute.cxx
1 // Created on: 2001-06-26
2 // Created by: Alexander GRIGORIEV
3 // Copyright (c) 2001-2012 OPEN CASCADE SAS
4 //
5 // The content of this file is subject to the Open CASCADE Technology Public
6 // License Version 6.5 (the "License"). You may not use the content of this file
7 // except in compliance with the License. Please obtain a copy of the License
8 // at http://www.opencascade.org and read it completely before using this file.
9 //
10 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 //
13 // The Original Code and all software distributed under the License is
14 // distributed on an "AS IS" basis, without warranty of any kind, and the
15 // Initial Developer hereby disclaims all such warranties, including without
16 // limitation, any warranties of merchantability, fitness for a particular
17 // purpose or non-infringement. Please see the License for the specific terms
18 // and conditions governing the rights and limitations under the License.
19
20
21 #include <LDOM_BasicAttribute.hxx>
22 #include <LDOM_MemManager.hxx>
23
24 //=======================================================================
25 //function : LDOM_BasicAttribute
26 //purpose  : 
27 //=======================================================================
28
29 LDOM_BasicAttribute::LDOM_BasicAttribute (const LDOM_Attr& anAttr)
30      : LDOM_BasicNode   (anAttr.Origin()),
31        myName           (anAttr.getName().GetString()),
32        myValue          (anAttr.getValue()) {}
33
34 //=======================================================================
35 //function : Create
36 //purpose  : construction in the Document's data pool
37 //=======================================================================
38
39 LDOM_BasicAttribute& LDOM_BasicAttribute::Create
40                                         (const LDOMBasicString&         theName,
41                                          const Handle(LDOM_MemManager)& theDoc,
42                                          Standard_Integer&              theHash)
43 {
44   void * aMem = theDoc -> Allocate (sizeof(LDOM_BasicAttribute));
45   LDOM_BasicAttribute * aNewAtt = new (aMem) LDOM_BasicAttribute;
46
47   const char * aString = theName.GetString();
48   aNewAtt -> myName =
49     theDoc -> HashedAllocate (aString, (Standard_Integer)strlen(aString), theHash);
50
51   aNewAtt -> myNodeType = LDOM_Node::ATTRIBUTE_NODE;
52   return * aNewAtt;
53 }
54
55 //=======================================================================
56 //function : operator =
57 //purpose  : Assignment to NULL
58 //=======================================================================
59
60 LDOM_BasicAttribute& LDOM_BasicAttribute::operator= (const LDOM_NullPtr * aNull)
61 {
62   myName = NULL;
63   myValue = aNull;
64   LDOM_BasicNode::operator= (aNull);
65   return * this;
66 }