Line data Source code
1 : /*! 2 : * \file esys/repo/manifest/multifilebase_manifest.cpp 3 : * \brief 4 : * 5 : * \cond 6 : * __legal_b__ 7 : * 8 : * Copyright (c) 2023 Michel Gillet 9 : * Distributed under the MIT License. 10 : * (See accompanying file LICENSE.txt or 11 : * copy at https://opensource.org/licenses/MIT) 12 : * 13 : * __legal_e__ 14 : * \endcond 15 : * 16 : */ 17 : 18 : #include "esys/repo/esysrepo_prec.h" 19 : #include "esys/repo/manifest/multifilebase.h" 20 : 21 : namespace esys::repo::manifest 22 : { 23 : 24 4 : MultiFileBase::MultiFileBase() = default; 25 : 26 8 : MultiFileBase::~MultiFileBase() = default; 27 : 28 5 : void MultiFileBase::set_capture(std::shared_ptr<Capture> capture) 29 : { 30 5 : m_capture = capture; 31 5 : } 32 : 33 19 : std::shared_ptr<Capture> MultiFileBase::get_capture() const 34 : { 35 19 : return m_capture; 36 : } 37 : 38 : } // namespace esys::repo::manifest