SpECTRE Documentation Coverage Report
Current view: top level - Evolution/Systems/ForceFree/BoundaryConditions - BoundaryCondition.hpp Hit Total Coverage
Commit: 9e4176f904ee1c51f05efc42ff1e485357699444 Lines: 3 12 25.0 %
Date: 2024-03-28 23:18:37
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           1 : namespace ForceFree {
      11             : 
      12             : /*!
      13             :  * \brief Boundary conditions for the GRFFE system
      14             :  */
      15           1 : namespace BoundaryConditions {
      16             : 
      17             : /*!
      18             :  * \brief The base class of which all boundary conditions must inherit
      19             :  */
      20           1 : class BoundaryCondition : public domain::BoundaryConditions::BoundaryCondition {
      21             :  public:
      22           0 :   BoundaryCondition() = default;
      23           0 :   BoundaryCondition(BoundaryCondition&&) = default;
      24           0 :   BoundaryCondition& operator=(BoundaryCondition&&) = default;
      25           0 :   BoundaryCondition(const BoundaryCondition&) = default;
      26           0 :   BoundaryCondition& operator=(const BoundaryCondition&) = default;
      27           0 :   ~BoundaryCondition() override = default;
      28           0 :   explicit BoundaryCondition(CkMigrateMessage* msg);
      29             : 
      30           0 :   void pup(PUP::er& p) override;
      31             : };
      32             : 
      33             : }  // namespace BoundaryConditions
      34             : }  // namespace ForceFree

Generated by: LCOV version 1.14