ParMooN
 All Classes Functions Variables Friends Pages
InnerEdge.h
1 // =======================================================================
2 // @(#)InnerEdge.h
3 //
4 // Class: TInnerEdge
5 // Purpose: class for inner edges in 3D
6 //
7 // Author: Sashikumaar Ganesan 03.09.2010
8 //
9 // History:
10 //
11 // =======================================================================
12 
13 #ifndef __INNEREDGE__
14 #define __INNEREDGE__
15 
16 #include <Edge.h>
17 
19 class TInnerEdge : public TEdge
20 {
21  protected:
22 
23  public:
24 
26  TInnerEdge(int n_Neibs, TBaseCell **neighbs);
27 
28 };
29 
30 #endif
TInnerEdge(int n_Neibs, TBaseCell **neighbs)
Definition: InnerEdge.C:16
Definition: InnerEdge.h:19
information for finite element data structure
Definition: BaseCell.h:25
Definition: Edge.h:22