Salome HOME
Copyrights update
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_AttributeTreeNode.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 //  File   : SALOMEDSClient_AttributeTreeNode.hxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #ifndef SALOMEDSClient_AttributeTreeNode_HeaderFile
25 #define SALOMEDSClient_AttributeTreeNode_HeaderFile
26
27 #include "SALOMEDSClient_definitions.hxx" 
28 #include "SALOMEDSClient_GenericAttribute.hxx" 
29
30 class SALOMEDSClient_AttributeTreeNode
31 {
32 public:
33   
34   virtual void SetFather(const _PTR(AttributeTreeNode)& value) = 0;
35   virtual bool HasFather() = 0;
36   virtual _PTR(AttributeTreeNode) GetFather() = 0;
37   virtual void SetPrevious(const _PTR(AttributeTreeNode)& value) = 0;
38   virtual bool HasPrevious() = 0;
39   virtual _PTR(AttributeTreeNode) GetPrevious() = 0;
40   virtual void SetNext(const _PTR(AttributeTreeNode)& value) = 0;
41   virtual bool HasNext() = 0;
42   virtual _PTR(AttributeTreeNode) GetNext() = 0;
43   virtual void SetFirst(const _PTR(AttributeTreeNode)& value) = 0;
44   virtual bool HasFirst() = 0;
45   virtual _PTR(AttributeTreeNode) GetFirst() = 0;
46   virtual void SetTreeID(const std::string& value) = 0;
47   virtual std::string GetTreeID() = 0;
48   virtual void Append(const _PTR(AttributeTreeNode)& value) = 0;
49   virtual void Prepend(const _PTR(AttributeTreeNode)& value) = 0;
50   virtual void InsertBefore(const _PTR(AttributeTreeNode)& value) = 0;
51   virtual void InsertAfter(const _PTR(AttributeTreeNode)& value) = 0;
52   virtual void Remove() = 0;
53   virtual int Depth() = 0;
54   virtual bool IsRoot() = 0;
55   virtual bool IsDescendant(const _PTR(AttributeTreeNode)& value) = 0;
56   virtual bool IsFather(const _PTR(AttributeTreeNode)& value) = 0;
57   virtual bool IsChild(const _PTR(AttributeTreeNode)& value) = 0;
58   virtual std::string Label() = 0;
59
60 };
61
62 #endif