0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
[occt.git] / src / MDataStd / MDataStd_UAttributeRetrievalDriver.cxx
1 // Created on: 1999-06-15
2 // Created by: Sergey RUIN
3 // Copyright (c) 1999-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22
23 #include <MDataStd_UAttributeRetrievalDriver.ixx>
24 #include <PDataStd_UAttribute.hxx>
25 #include <TDataStd_UAttribute.hxx>
26 #include <MDataStd.hxx>
27 #include <TCollection_ExtendedString.hxx>
28 #include <PCollection_HExtendedString.hxx>
29 #include <CDM_MessageDriver.hxx>
30
31 //=======================================================================
32 //function : MDataStd_UAttributeRetrievalDriver
33 //purpose  : 
34 //=======================================================================
35
36 MDataStd_UAttributeRetrievalDriver::MDataStd_UAttributeRetrievalDriver(const Handle(CDM_MessageDriver)& theMsgDriver):MDF_ARDriver(theMsgDriver)
37 {}
38
39
40 //=======================================================================
41 //function : VersionNumber
42 //purpose  : 
43 //=======================================================================
44
45 Standard_Integer MDataStd_UAttributeRetrievalDriver::VersionNumber() const
46 { return 0; }
47
48
49 //=======================================================================
50 //function : SourceType
51 //purpose  : 
52 //=======================================================================
53
54 Handle(Standard_Type) MDataStd_UAttributeRetrievalDriver::SourceType() const
55 {
56   static Handle(Standard_Type) sourceType = STANDARD_TYPE(PDataStd_UAttribute);
57   return sourceType;
58 }
59
60
61 //=======================================================================
62 //function : NewEmpty
63 //purpose  : 
64 //=======================================================================
65
66 Handle(TDF_Attribute) MDataStd_UAttributeRetrievalDriver::NewEmpty () const {
67
68   return new TDataStd_UAttribute ();
69 }
70
71
72 //=======================================================================
73 //function : Paste
74 //purpose  : 
75 //=======================================================================
76
77 void MDataStd_UAttributeRetrievalDriver::Paste(const Handle(PDF_Attribute)& Source,
78       const Handle(TDF_Attribute)& Target,
79       const Handle(MDF_RRelocationTable)& /*RelocTable*/) const
80 {
81   Handle(PDataStd_UAttribute) S = Handle(PDataStd_UAttribute)::DownCast (Source);
82   Handle(TDataStd_UAttribute) T = Handle(TDataStd_UAttribute)::DownCast (Target);
83
84   TCollection_ExtendedString extstr = (S->GetID())->Convert();
85   Standard_GUID guid( extstr.ToExtString() ); 
86
87   T->SetID( guid );  
88 }
89