ParMooN
 All Classes Functions Variables Friends Pages
It_Between.h
1 // =======================================================================
2 // @(#)It_Between.h 1.1 10/30/98
3 //
4 // Class: TIt_Between
5 // Purpose: iterator to produce a series of cells which can be
6 // refined or derefined
7 //
8 // Author: Volker Behns 30.09.98
9 //
10 // =======================================================================
11 
12 #ifndef __IT_BETWEEN__
13 #define __IT_BETWEEN__
14 
15 #include <It_Search.h>
16 
19 class TIt_Between : public TIt_Search
20 {
21  protected:
24 
25  public:
26  // Constructors
27 
28  // Methods
30  virtual int Init(int level);
31 
33  virtual TBaseCell *Next(int &info);
35  virtual TBaseCell *Prev();
36 };
37 
38 #endif
int Level_bottom
Definition: It_Between.h:23
virtual int Init(int level)
Definition: It_Between.C:17
Definition: It_Search.h:19
information for finite element data structure
Definition: BaseCell.h:25
virtual TBaseCell * Prev()
Definition: It_Between.C:61
virtual TBaseCell * Next(int &info)
Definition: It_Between.C:27
Definition: It_Between.h:19