SpECTRE Documentation Coverage Report
Current view: top level - Evolution/Systems/NewtonianEuler/BoundaryConditions - BoundaryCondition.hpp Hit Total Coverage
Commit: 9a905b0737f373631c1b8e8389b8f26e67fa5313 Lines: 2 11 18.2 %
Date: 2024-03-28 09:03:18
Legend: Lines: hit not hit

          Line data    Source code
       1           0 : // Distributed under the MIT License.
       2             : // See LICENSE.txt for details.
       3             : 
       4             : #pragma once
       5             : 
       6             : #include <pup.h>
       7             : 
       8             : #include "Domain/BoundaryConditions/BoundaryCondition.hpp"
       9             : 
      10             : namespace NewtonianEuler {
      11             : /// \brief Boundary conditions for the Newtonian Euler hydrodynamics system
      12           1 : namespace BoundaryConditions {
      13             : /// \brief The base class off of which all boundary conditions must inherit
      14             : template <size_t Dim>
      15           1 : class BoundaryCondition : public domain::BoundaryConditions::BoundaryCondition {
      16             :  public:
      17           0 :   BoundaryCondition() = default;
      18           0 :   BoundaryCondition(BoundaryCondition&&) = default;
      19           0 :   BoundaryCondition& operator=(BoundaryCondition&&) = default;
      20           0 :   BoundaryCondition(const BoundaryCondition&) = default;
      21           0 :   BoundaryCondition& operator=(const BoundaryCondition&) = default;
      22           0 :   ~BoundaryCondition() override = default;
      23           0 :   explicit BoundaryCondition(CkMigrateMessage* msg);
      24             : 
      25           0 :   void pup(PUP::er& p) override;
      26             : };
      27             : }  // namespace BoundaryConditions
      28             : }  // namespace NewtonianEuler

Generated by: LCOV version 1.14