From f2715107ce09b5561aac8083d284ff4119b7e02d Mon Sep 17 00:00:00 2001 From: Dominik Baack <dominik.baack@tu-dortmund.de> Date: Fri, 13 Nov 2020 22:32:04 +0100 Subject: [PATCH] Added CorsikaData --- corsika/framework/utility/CorsikaData.hpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 corsika/framework/utility/CorsikaData.hpp diff --git a/corsika/framework/utility/CorsikaData.hpp b/corsika/framework/utility/CorsikaData.hpp new file mode 100644 index 000000000..7db08948b --- /dev/null +++ b/corsika/framework/utility/CorsikaData.hpp @@ -0,0 +1,20 @@ +/* + * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu + * + * This software is distributed under the terms of the GNU General Public + * Licence version 3 (GPL Version 3). See file LICENSE for a full version of + * the license. + */ + +#pragma once + +#include <string> + +namespace corsika { + /** + * returns the full path of the file \p filename within the CORSIKA_DATA directory + */ + std::string CorsikaData(std::string const& filename); +} // namespace corsika + +#include <corsika/detail/framework/utility/CorsikaData.inl> \ No newline at end of file -- GitLab