SpECTRE Documentation Coverage Report
Current view: top level - Domain/BoundaryConditions - BoundaryCondition.hpp Hit Total Coverage
Commit: f23e75c235cae5144b8ac7ce01280be5b8cd2c8a Lines: 2 12 16.7 %
Date: 2024-09-07 06:21:00
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 <memory>
       7             : #include <pup.h>
       8             : #include <string>
       9             : 
      10             : #include "Utilities/Serialization/CharmPupable.hpp"
      11             : 
      12             : /// \ingroup ComputationalDomainGroup
      13             : /// \brief %Domain support for applying boundary conditions
      14           1 : namespace domain::BoundaryConditions {
      15             : /*!
      16             :  * \brief Base class from which all system-specific base classes must inherit.
      17             :  */
      18           1 : class BoundaryCondition : public PUP::able {
      19             :  public:
      20           0 :   BoundaryCondition() = default;
      21           0 :   BoundaryCondition(BoundaryCondition&&) = default;
      22           0 :   BoundaryCondition& operator=(BoundaryCondition&&) = default;
      23           0 :   BoundaryCondition(const BoundaryCondition&) = default;
      24           0 :   BoundaryCondition& operator=(const BoundaryCondition&) = default;
      25           0 :   ~BoundaryCondition() override = default;
      26           0 :   explicit BoundaryCondition(CkMigrateMessage* const msg) : PUP::able(msg) {}
      27           0 :   WRAPPED_PUPable_abstract(BoundaryCondition);  // NOLINT
      28             : 
      29           0 :   virtual auto get_clone() const -> std::unique_ptr<BoundaryCondition> = 0;
      30             : };
      31             : }  // namespace domain::BoundaryConditions

Generated by: LCOV version 1.14