0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / MAT / MAT_TListNode.lxx
1 // Created on: 1992-06-24
2 // Created by: Gilles DEBARBOUILLE
3 // Copyright (c) 1992-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 under
9 // the terms of the GNU Lesser General Public License 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 //=======================================================================
18 //function : MAT_TListNode
19 //purpose  : 
20 //=======================================================================
21
22 inline MAT_TListNode::MAT_TListNode() {}
23
24 //=======================================================================
25 //function : MAT_TListNode
26 //purpose  : 
27 //=======================================================================
28
29 inline MAT_TListNode::MAT_TListNode(const Item& anitem)
30 {
31   theitem = anitem;
32 }
33
34 //=======================================================================
35 //function : GetItem
36 //purpose  : 
37 //=======================================================================
38
39 inline Item MAT_TListNode::GetItem() const
40 {
41   return theitem;
42 }
43
44 //=======================================================================
45 //function : Next
46 //purpose  : 
47 //=======================================================================
48
49 inline Handle(MAT_TListNode) MAT_TListNode::Next() const
50 {
51   return thenext;
52 }
53
54 //=======================================================================
55 //function : Previous
56 //purpose  : 
57 //=======================================================================
58
59 inline Handle(MAT_TListNode) MAT_TListNode::Previous() const
60 {
61   return theprevious;
62 }
63
64 //=======================================================================
65 //function : SetItem
66 //purpose  : 
67 //=======================================================================
68
69 inline void MAT_TListNode::SetItem(const Item& anitem)
70 {
71   theitem=anitem;
72 }
73
74 //=======================================================================
75 //function : Next
76 //purpose  : 
77 //=======================================================================
78
79 inline void MAT_TListNode::Next
80   (const Handle(MAT_TListNode)& atlistnode)
81 {
82   thenext=atlistnode;
83 }
84
85 //=======================================================================
86 //function : Previous
87 //purpose  : 
88 //=======================================================================
89
90 inline void MAT_TListNode::Previous
91   (const Handle(MAT_TListNode)& atlistnode)
92 {
93   theprevious=atlistnode;
94 }