Class documentation of Concepts

Loading...
Searching...
No Matches
maxwell.hh
Go to the documentation of this file.
1
7#ifndef maxwell2D_hh
8#define maxwell2D_hh
9
10#include "basics/cloneable.hh"
11#include "toolbox/array.hh"
13
14namespace hp2D {
15 // forward declarations
16 template<class F>
17 class Quad;
18
19 using concepts::Real;
20
21 // ***************************************************** MaxwellSharedData **
22
39 public:
40 MaxwellSharedData() : jacobian(0), jacobianInv(0), elm(0) {}
41 virtual ~MaxwellSharedData() {}
42 virtual MaxwellSharedData* clone() const {
43 return new MaxwellSharedData(); }
44 concepts::Array<Real> jacobian;
46 const Quad<Real>* elm;
47 };
48
49} // namespace hp2D
50
51#endif // maxwell2D_hh
virtual MaxwellSharedData * clone() const
Definition maxwell.hh:42
double Real
Definition typedefs.hh:39