ParMooN
 All Classes Functions Variables Friends Pages
Brick.h
1 // =======================================================================
2 // @(#)Brick.h 1.1 10/30/98
3 //
4 // Class: TBrick
5 // Purpose: shape descriptor of a brick
6 //
7 // Author: Gunar Matthies 11.07.2000
8 //
9 // =======================================================================
10 
11 #ifndef __BRICK__
12 #define __BRICK__
13 
14 #include <Hexahedron.h>
15 
17 class TBrick : public THexahedron
18 {
19  public:
20  // Constructor
22  TBrick();
23 
24  // Methods
25 };
26 
27 #endif
Definition: Hexahedron.h:23
TBrick()
Definition: Brick.C:15
Definition: Brick.h:17