From 9eae0de01f90d0b9ed8a1670f81f39aa7b924302 Mon Sep 17 00:00:00 2001 From: rulrich <ralf.m.ulrich@kit.edu> Date: Sun, 31 May 2020 13:18:21 +0200 Subject: [PATCH] cleanup --- Processes/CONEX/CONEX.cc | 10 ++++++++++ Processes/CONEX/CONEX.h | 20 +++++++++++++++----- Processes/CONEX/testConex.cc | 1 - 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Processes/CONEX/CONEX.cc b/Processes/CONEX/CONEX.cc index 6787dbbb6..111bbd367 100644 --- a/Processes/CONEX/CONEX.cc +++ b/Processes/CONEX/CONEX.cc @@ -1,3 +1,13 @@ +/* + * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu + * + * See file AUTHORS for a list of contributors. + * + * 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. + */ + #include <corsika/process/conex/CONEX.h> using namespace corsika::process::CONEX; diff --git a/Processes/CONEX/CONEX.h b/Processes/CONEX/CONEX.h index 3fee04d66..bbc914f6e 100644 --- a/Processes/CONEX/CONEX.h +++ b/Processes/CONEX/CONEX.h @@ -1,12 +1,22 @@ +/* + * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu + * + * See file AUTHORS for a list of contributors. + * + * 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 <ConexDynamicInterface.h> namespace corsika::process::CONEX { -class conex{ - public: - conex(); -}; + class conex { + public: + conex(); + }; -} +} // namespace corsika::process::CONEX diff --git a/Processes/CONEX/testConex.cc b/Processes/CONEX/testConex.cc index 21dee216d..db1551544 100644 --- a/Processes/CONEX/testConex.cc +++ b/Processes/CONEX/testConex.cc @@ -25,6 +25,5 @@ TEST_CASE("CONEX", "[processes]") { SECTION("linking conex") { using std::cout; using std::endl; - } } -- GitLab