Class documentation of Concepts

Loading...
Searching...
No Matches
arrayElementFormula.hh
Go to the documentation of this file.
1
6#ifndef hp3darrayelementformula_hh
7#define hp3darrayelementformula_hh
8
9#include "toolbox/array.hh"
11
12
13namespace hp3D {
14
15 // forward declarations
16 class Hexahedron;
17
18 // *************************************************** ArrayElementFormula **
19
22 template<class F = Real>
24 public:
36 void compute(const Hexahedron& elm,
38 };
39
40 template<class F>
42
43 template<class F>
46 : concepts::Array<F>(0)
47 {
48 compute(elm, frm);
49 }
50
51
52} // namespace hp3D
53
54#endif // hp3darrayelementformula_hh
ArrayElementFormula(const Hexahedron &elm, const concepts::ElementFormulaContainer< F > frm)
Constructor with calling of compute.
void compute(const Hexahedron &elm, const concepts::ElementFormulaContainer< F > frm)
Definition meshDX.hh:23