-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing boundary conditions file
- Loading branch information
1 parent
d0759b7
commit f95e68c
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
include/enumerations/boundary_conditions/boundary_conditions.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#ifndef _SPECFEM_BOUNDARY_BOUNDARY_HPP | ||
#define _SPECFEM_BOUNDARY_BOUNDARY_HPP | ||
|
||
#include "enumerations/boundary.hpp" | ||
#include "enumerations/dimension.hpp" | ||
#include "enumerations/medium.hpp" | ||
|
||
namespace specfem { | ||
namespace boundary { | ||
template <specfem::dimension::type dimension, | ||
specfem::element::medium_tag medium, | ||
specfem::element::property_tag property, | ||
specfem::element::boundary_tag BoundaryType, | ||
typename quadrature_points_type> | ||
class boundary; | ||
} // namespace boundary | ||
} // namespace specfem | ||
|
||
#endif // _SPECFEM_BOUNDARY_BOUNDARY_HPP |