0024428: Implementation of LGPL license
[occt.git] / src / ChFiDS / ChFiDS_StripeMap.cxx
1 // Created on: 1993-11-18
2 // Created by: Isabelle GRIGNON
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and / or modify it
9 // under the terms of the GNU Lesser General Public version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <ChFiDS_StripeMap.ixx>
18
19 //=======================================================================
20 //function : ChFiDS_StripeMap
21 //purpose  : 
22 //=======================================================================
23
24 ChFiDS_StripeMap::ChFiDS_StripeMap() 
25 {
26 }
27
28
29
30 //=======================================================================
31 //function : Add
32 //purpose  : 
33 //=======================================================================
34
35 void  ChFiDS_StripeMap::Add(const TopoDS_Vertex& V, 
36                                const Handle(ChFiDS_Stripe)& F)
37 {
38   Standard_Integer Index = mymap.FindIndex(V);
39   if (Index==0) {
40     ChFiDS_ListOfStripe Empty;
41     Index = mymap.Add(V,Empty);
42   }
43   mymap(Index).Append(F);
44 }
45
46
47
48 //=======================================================================
49 //function : FindFromKey
50 //purpose  : 
51 //=======================================================================
52
53 const ChFiDS_ListOfStripe&  ChFiDS_StripeMap::FindFromKey(
54                                                   const TopoDS_Vertex& V)const 
55 {
56   return mymap.FindFromKey(V);
57 }
58
59
60
61 //=======================================================================
62 //function : FindFromIndex
63 //purpose  : 
64 //=======================================================================
65
66 const ChFiDS_ListOfStripe&  ChFiDS_StripeMap::
67                                FindFromIndex(const Standard_Integer I)const 
68 {
69   return mymap.FindFromIndex(I);
70 }
71
72 void ChFiDS_StripeMap::Clear()
73 {
74   mymap.Clear();
75 }