Salome HOME
Merge remote branch 'origin/V7_dev'
[modules/yacs.git] / src / SALOMEDSImpl / SALOMEDSImpl_UseCaseBuilder.hxx
1 // Copyright (C) 2007-2016  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 //  File   : SALOMEDSImpl_UseCaseBuilder.hxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #ifndef __SALOMEDSIMPL_USECaseBuilder_H__
28 #define __SALOMEDSIMPL_USECaseBuilder_H__
29
30 #include "SALOMEDSImpl_Defines.hxx"
31
32 #include <string>
33
34 #include "DF_Document.hxx"
35 #include "DF_Label.hxx"
36 #include "SALOMEDSImpl_AttributeTreeNode.hxx"
37 #include "SALOMEDSImpl_UseCaseIterator.hxx"
38
39 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_UseCaseBuilder
40 {
41 private:
42
43   SALOMEDSImpl_AttributeTreeNode*     _root;
44   DF_Document*                        _doc;
45
46 public:
47
48   //! standard constructor  
49   SALOMEDSImpl_UseCaseBuilder(DF_Document* theDocument);
50
51   //! standard destructor
52   ~SALOMEDSImpl_UseCaseBuilder();
53
54   virtual bool Append(const SALOMEDSImpl_SObject& theObject);
55
56   virtual bool Remove(const SALOMEDSImpl_SObject& theObject);
57
58   virtual bool AppendTo(const SALOMEDSImpl_SObject& theFather, const SALOMEDSImpl_SObject& theObject);
59
60   virtual bool InsertBefore(const SALOMEDSImpl_SObject& theFirst, const SALOMEDSImpl_SObject& theNext);
61
62   virtual bool  SetCurrentObject(const SALOMEDSImpl_SObject& theObject);
63
64   virtual bool SetRootCurrent();
65
66   virtual bool  HasChildren(const SALOMEDSImpl_SObject& theObject);
67
68   virtual bool SortChildren(const SALOMEDSImpl_SObject& theObject, bool theAscendingOrder);
69
70   virtual SALOMEDSImpl_SObject GetFather(const SALOMEDSImpl_SObject& theObject);
71
72   virtual bool  IsUseCase(const SALOMEDSImpl_SObject& theObject);
73
74   virtual bool  IsUseCaseNode(const SALOMEDSImpl_SObject& theObject);
75
76   virtual bool SetName(const std::string& theName);
77
78   virtual SALOMEDSImpl_SObject GetCurrentObject();
79
80   virtual std::string GetName();
81
82   virtual SALOMEDSImpl_SObject AddUseCase(const std::string& theName);
83
84   virtual SALOMEDSImpl_UseCaseIterator GetUseCaseIterator(const SALOMEDSImpl_SObject& anObject);
85
86   SALOMEDSImpl_SObject GetSObject(const std::string& theEntry);    
87
88 };
89 #endif