ParMooN
 All Classes Functions Variables Friends Pages
It_EQLevel.h
1 // =======================================================================
2 // @(#)It_EQLevel.h 1.1 10/30/98
3 //
4 // Class: TIt_EQ
5 // Purpose: iterator to produce a series of cells which lie
6 // exactly on a special refinement level
7 //
8 // Author: Volker Behns 01.09.97
9 //
10 // =======================================================================
11 
12 #ifndef __IT_EQLEVEL__
13 #define __IT_EQLEVEL__
14 
15 #include <It_Search.h>
16 
19 class TIt_EQLevel : 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
Definition: It_EQLevel.h:19
Definition: It_Search.h:19
virtual TBaseCell * Prev()
Definition: It_EQLevel.C:53
information for finite element data structure
Definition: BaseCell.h:25
virtual TBaseCell * Next(int &info)
Definition: It_EQLevel.C:15