dune-grid  2.2.1
boundarysegment.hh
Go to the documentation of this file.
1 #ifndef DUNE_BOUNDARY_SEGMENT_HH
2 #define DUNE_BOUNDARY_SEGMENT_HH
3 
4 #include <dune/common/fvector.hh>
5 
10 namespace Dune {
11 
26  template< int dim, int dimworld = dim >
28  {
30  virtual ~BoundarySegment() {}
31 
34  virtual FieldVector< double, dimworld >
35  operator() ( const FieldVector< double, dim-1> &local ) const = 0;
36  };
37 
38 } // end namespace Dune
39 
40 #endif