Test for 0022778: Bug in BRepMesh
[occt.git] / src / MDataStd / MDataStd_RealListStorageDriver.cxx
CommitLineData
b311480e 1// Created on: 2007-05-29
2// Created by: Vlad Romashko
3// Copyright (c) 2007-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
7fd59977 20
21#include <MDataStd_RealListStorageDriver.ixx>
22#include <PDataStd_RealList.hxx>
23#include <TDataStd_RealList.hxx>
24#include <MDataStd.hxx>
25#include <CDM_MessageDriver.hxx>
26#include <TColStd_ListIteratorOfListOfReal.hxx>
27
28//=======================================================================
29//function : MDataStd_RealListStorageDriver
30//purpose :
31//=======================================================================
32MDataStd_RealListStorageDriver::MDataStd_RealListStorageDriver(const Handle(CDM_MessageDriver)& theMsgDriver):MDF_ASDriver(theMsgDriver)
33{
34
35}
36
37//=======================================================================
38//function : VersionNumber
39//purpose :
40//=======================================================================
41Standard_Integer MDataStd_RealListStorageDriver::VersionNumber() const
42{
43 return 0;
44}
45
46
47//=======================================================================
48//function : SourceType
49//purpose :
50//=======================================================================
51Handle(Standard_Type) MDataStd_RealListStorageDriver::SourceType() const
52{
53 static Handle(Standard_Type) sourceType = STANDARD_TYPE(TDataStd_RealList);
54 return sourceType;
55}
56
57//=======================================================================
58//function : NewEmpty
59//purpose :
60//=======================================================================
61Handle(PDF_Attribute) MDataStd_RealListStorageDriver::NewEmpty() const
62{
63 return new PDataStd_RealList();
64}
65
66//=======================================================================
67//function : Paste
68//purpose :
69//=======================================================================
70void MDataStd_RealListStorageDriver::Paste(const Handle(TDF_Attribute)& Source,
71 const Handle(PDF_Attribute)& Target,
72 const Handle(MDF_SRelocationTable)& RelocTable) const
73{
74 Handle(TDataStd_RealList) S = Handle(TDataStd_RealList)::DownCast (Source);
75 Handle(PDataStd_RealList) T = Handle(PDataStd_RealList)::DownCast (Target);
76
77 Standard_Integer lower = 1, upper = S->Extent(), i = lower;
78 if (upper >= lower)
79 {
80 T->Init(lower, upper);
81 TColStd_ListIteratorOfListOfReal itr(S->List());
82 for (; itr.More(); itr.Next(), i++)
83 {
84 T->SetValue(i, itr.Value());
85 }
86 }
87}