Line data Source code
1 : /*! 2 : * \file esys/repo/manifest/base_manifest.cpp 3 : * \brief 4 : * 5 : * \cond 6 : * __legal_b__ 7 : * 8 : * Copyright (c) 2021 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/base.h" 20 : 21 : namespace esys::repo::manifest 22 : { 23 : 24 : const std::string Base::s_folder_name = "esysrepo"; 25 : 26 54 : const std::string &Base::get_folder_name() 27 : { 28 54 : return s_folder_name; 29 : } 30 : 31 28 : Base::Base() = default; 32 : 33 28 : Base::~Base() = default; 34 : 35 : } // namespace esys::repo::manifest