Salome HOME
PR: binaries generation : remove duplicate rules
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeTarget_i.cxx
1 //  SALOME SALOMEDS : data structure of SALOME and sources of Salome data server 
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOMEDS_AttributeTarget_i.cxx
25 //  Author : Yves FRICAUD
26 //  Module : SALOME
27 //  $Header$
28
29 #include <TDF_ListIteratorOfLabelList.hxx>
30 #include <TDF_LabelList.hxx>
31 #include <TDF_Label.hxx>
32 #include <TDF_Tool.hxx>
33
34 #include "SALOMEDS_AttributeTarget_i.hxx"
35 #include "SALOMEDS_SObject_i.hxx"
36
37 using namespace std;
38
39 void SALOMEDS_AttributeTarget_i::Add(SALOMEDS::SObject_ptr anObject)
40 {
41   TDF_Label aLabel;
42   TDF_Tool::Label(_myAttr->Label().Data(),anObject->GetID(),aLabel,1);
43   _myAttr->Append(aLabel);
44 }
45
46 SALOMEDS::Study::ListOfSObject* SALOMEDS_AttributeTarget_i::Get() {
47   TDF_LabelList aLList;
48
49   _myAttr->Get(aLList);
50   SALOMEDS::Study::ListOfSObject_var aSList = new SALOMEDS::Study::ListOfSObject;
51
52   if (aLList.Extent() == 0) 
53     return aSList._retn();
54
55   aSList->length(aLList.Extent());
56   TDF_ListIteratorOfLabelList anIter(aLList);
57   SALOMEDS_Study_i* aStudy = _mySObject->GetStudyServant();
58   for(int index = 0; anIter.More(); anIter.Next(), index++){
59     const TDF_Label& aLabel = anIter.Value();
60     aSList[index] = SALOMEDS_SObject_i::NewRef(aStudy,aLabel)._retn();
61   }
62   return aSList._retn();
63 }
64
65 void SALOMEDS_AttributeTarget_i::Remove(SALOMEDS::SObject_ptr anObject) {
66   TDF_Label aLabel;
67   CORBA::String_var anID = anObject->GetID();
68   TDF_Tool::Label(_myAttr->Label().Data(),anID.inout(),aLabel,1);
69   _myAttr->Remove(aLabel);
70 }