ParMooN
 All Classes Functions Variables Friends Pages
It_LELevel.h
1 // =======================================================================
2 // @(#)It_LELevel.h 1.1 10/30/98
3 //
4 // Class: TIt_LELevel
5 // Purpose: iterator to produce a series of cells which lie
6 // on a special refinement level or on top of cell tree
7 //
8 // Author: Volker Behns 01.09.97
9 //
10 // =======================================================================
11 
12 #ifndef __IT_LELEVEL__
13 #define __IT_LELEVEL__
14 
15 #include <It_Search.h>
16 
19 class TIt_LELevel : public TIt_Search
20 {
21  protected:
22 
23  public:
24  // Constructors
25 
26  // Methods
28  virtual TBaseCell *Next(int &info);
30  virtual TBaseCell *Prev();
31 };
32 
33 #endif
virtual TBaseCell * Next(int &info)
Definition: It_LELevel.C:15
Definition: It_Search.h:19
information for finite element data structure
Definition: BaseCell.h:25
virtual TBaseCell * Prev()
Definition: It_LELevel.C:49
Definition: It_LELevel.h:19