summaryrefslogtreecommitdiff
path: root/inc/TCollection_AVLNode.hxx
blob: ce075ea5168984d1114382325b18ac700c3c6cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ----------------------------------------------------------------------
// Internal C++ class that provides tool to manipulate a tree node.
// ----------------------------------------------------------------------

//void ShallowDump(const Item&, Standard_OStream& );

class AVLNode{
  public :

  Item      Value;
  AVLNode*  Left ;
  AVLNode*  Right;
  Standard_Integer   Count;

  friend class AVLList;       // For iterator 
};