DOLFIN
DOLFIN C++ interface
DomainBoundary.h
1 // Copyright (C) 2008 Anders Logg
2 //
3 // This file is part of DOLFIN.
4 //
5 // DOLFIN is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // DOLFIN is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
17 //
18 // First added: 2008-05-23
19 // Last changed: 2008-05-23
20 
21 #ifndef __DOMAIN_BOUNDARY_H
22 #define __DOMAIN_BOUNDARY_H
23 
24 #include <dolfin/common/Array.h>
25 #include "SubDomain.h"
26 
27 namespace dolfin
28 {
29 
33 
34  class DomainBoundary : public SubDomain
35  {
36  public:
37 
40 
42  virtual ~DomainBoundary() {}
43 
45  virtual bool inside(const Array<double>& x, bool on_boundary) const
46  { return on_boundary; }
47 
48  };
49 
50 }
51 
52 #endif
Definition: SubDomain.h:42
Definition: adapt.h:29
virtual bool inside(const Array< double > &x, bool on_boundary) const
Return true for points on the boundary.
Definition: DomainBoundary.h:45
Definition: Array.h:41
Definition: DomainBoundary.h:34
virtual ~DomainBoundary()
Destructor.
Definition: DomainBoundary.h:42
DomainBoundary()
Constructor.
Definition: DomainBoundary.h:39