From d70e55d7a74855d265d1caa209a2715f278ff8f9 Mon Sep 17 00:00:00 2001 From: Philipp Geier Date: Mon, 7 Aug 2023 15:21:18 +0200 Subject: [PATCH] Remove almost empty cc files --- src/eckit/CMakeLists.txt | 3 --- src/eckit/parser/JSONParser.cc | 23 ----------------------- src/eckit/parser/ObjectParser.cc | 24 ------------------------ src/eckit/parser/YAMLParser.cc | 24 ------------------------ 4 files changed, 74 deletions(-) delete mode 100644 src/eckit/parser/JSONParser.cc delete mode 100644 src/eckit/parser/ObjectParser.cc delete mode 100644 src/eckit/parser/YAMLParser.cc diff --git a/src/eckit/CMakeLists.txt b/src/eckit/CMakeLists.txt index e02aee87f..aa31379ca 100644 --- a/src/eckit/CMakeLists.txt +++ b/src/eckit/CMakeLists.txt @@ -522,15 +522,12 @@ list( APPEND eckit_parser_srcs parser/CSVParser.cc parser/CSVParser.h parser/JSON.h -parser/JSONParser.cc parser/JSONParser.h parser/GenericJSONParser.h -parser/ObjectParser.cc parser/ObjectParser.h parser/GenericObjectParser.h parser/StreamParser.cc parser/StreamParser.h -parser/YAMLParser.cc parser/YAMLParser.h parser/GenericYAMLParser.h ) diff --git a/src/eckit/parser/JSONParser.cc b/src/eckit/parser/JSONParser.cc deleted file mode 100644 index 525153c68..000000000 --- a/src/eckit/parser/JSONParser.cc +++ /dev/null @@ -1,23 +0,0 @@ -/* - * (C) Copyright 1996- ECMWF. - * - * This software is licensed under the terms of the Apache Licence Version 2.0 - * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. - * In applying this licence, ECMWF does not waive the privileges and immunities - * granted to it by virtue of its status as an intergovernmental organisation nor - * does it submit to any jurisdiction. - */ - -/// @file JSONParser.h -/// @author Baudouin Raoult -/// @author Tiago Quintino -/// @date Jun 2012 - -#include "eckit/parser/JSONParser.h" - -namespace eckit { - -// Explicit intstantiations -GenericJSONParser; - -} // namespace eckit diff --git a/src/eckit/parser/ObjectParser.cc b/src/eckit/parser/ObjectParser.cc deleted file mode 100644 index 2f17a1678..000000000 --- a/src/eckit/parser/ObjectParser.cc +++ /dev/null @@ -1,24 +0,0 @@ -/* - * (C) Copyright 1996- ECMWF. - * - * This software is licensed under the terms of the Apache Licence Version 2.0 - * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. - * In applying this licence, ECMWF does not waive the privileges and immunities - * granted to it by virtue of its status as an intergovernmental organisation nor - * does it submit to any jurisdiction. - */ - -/// @file ObjectParser.h -/// @author Baudouin Raoult -/// @author Tiago Quintino -/// @date Jun 2012 - -#include "eckit/parser/ObjectParser.h" - -namespace eckit { - -// Explicit instantiations -ObjectParser; -template class GenericObjectParser; - -} // namespace eckit diff --git a/src/eckit/parser/YAMLParser.cc b/src/eckit/parser/YAMLParser.cc deleted file mode 100644 index 096653a7d..000000000 --- a/src/eckit/parser/YAMLParser.cc +++ /dev/null @@ -1,24 +0,0 @@ -/* - * (C) Copyright 1996- ECMWF. - * - * This software is licensed under the terms of the Apache Licence Version 2.0 - * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. - * In applying this licence, ECMWF does not waive the privileges and immunities - * granted to it by virtue of its status as an intergovernmental organisation nor - * does it submit to any jurisdiction. - */ - -/// @file YAMLParser.h -/// @author Baudouin Raoult -/// @author Tiago Quintino -/// @date Jun 2012 - -#include "eckit/parser/YAMLParser.h" - -namespace eckit { - -// Explicit intstantiations -GenericYAMLParser; - -} // namespace eckit -