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