Salome HOME
updated copyright message
[modules/geom.git] / src / GEOM_I_Superv / GEOM_List_i.hh
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef __GEOM_LIST_I_H__
24 #define __GEOM_LIST_I_H__
25
26 #include "GEOM_I_Superv.hxx"
27
28 // IDL headers
29 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(GEOM_Superv)
31
32 #include "utilities.h"
33
34 template <class Type>
35 class GEOM_I_SUPERV_EXPORT GEOM_List_i : 
36   public virtual POA_GEOM::GEOM_List,
37   public virtual PortableServer::RefCountServantBase
38 {
39 public:
40   GEOM_List_i();
41   GEOM_List_i(const Type& theListToCopy);
42   ~GEOM_List_i();
43
44   const Type& GetList();
45
46   template <class ElemType>
47   void AddObject(ElemType theObject);
48
49 private:
50   Type myGOList;
51 };
52
53 //=============================================================================
54 //  constructor:
55 //=============================================================================
56 template <class Type>
57 GEOM_List_i<Type>::GEOM_List_i()
58 {
59   MESSAGE("GEOM_List_i::GEOM_List_i");
60   //create an empty list
61   myGOList.length(0);
62 }
63
64 //=============================================================================
65 //  constructor:
66 //=============================================================================
67 template <class Type>
68 GEOM_List_i<Type>::GEOM_List_i(const Type& theListToCopy)
69 {
70   int aLength = theListToCopy.length();
71   myGOList.length(aLength);
72   for (int i = 0; i < aLength; i++)
73     myGOList[i] = theListToCopy[i];
74 }
75
76 //=============================================================================
77 //  destructor:
78 //=============================================================================
79 template <class Type>
80 GEOM_List_i<Type>::~GEOM_List_i()
81 {
82   MESSAGE("GEOM_List_i::~GEOM_List_i");
83 }
84
85 //=============================================================================
86 //  GetList:
87 //=============================================================================
88 template <class Type>
89 const Type& GEOM_List_i<Type>::GetList()
90 {
91   MESSAGE("GEOM_List_i::GetList()");
92   return myGOList;
93 }
94
95 //=============================================================================
96 //  AddObject:
97 //=============================================================================
98 template <class Type>
99 template <class ElemType>
100 void GEOM_List_i<Type>::AddObject(ElemType theObject)
101 {
102   MESSAGE("GEOM_List_i::AddObject(...)");
103   int aLength = myGOList.length();
104   myGOList.length(aLength+1);
105   myGOList[aLength] = theObject;
106 }
107
108 #endif