boundarysegment.hh
Go to the documentation of this file.00001 #ifndef DUNE_BOUNDARY_SEGMENT_HH 00002 #define DUNE_BOUNDARY_SEGMENT_HH 00003 00008 namespace Dune { 00009 00021 template <int dimworld> 00022 class BoundarySegment { 00023 public: 00024 00026 virtual ~BoundarySegment() {} 00027 00030 virtual FieldVector<double,dimworld> operator()(const FieldVector<double, dimworld-1>& local) const = 0; 00031 00032 }; 00033 00034 } // end namespace Dune 00035 00036 #endif