diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
commit | 80132c8e221aa5a922496c46e23432685885ba04 (patch) | |
tree | c12774a3fae6837659d925d083328799b7a8b997 /modules/codec-netcdf/c++ | |
parent | 8dad985328e2183b224300aa992951131956fdb3 (diff) |
modules-all: Renamed every .h file to .hpp
Diffstat (limited to 'modules/codec-netcdf/c++')
-rw-r--r-- | modules/codec-netcdf/c++/SConscript | 2 | ||||
-rw-r--r-- | modules/codec-netcdf/c++/netcdf.hpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/codec-netcdf/c++/SConscript b/modules/codec-netcdf/c++/SConscript index fd95267..6d8866b 100644 --- a/modules/codec-netcdf/c++/SConscript +++ b/modules/codec-netcdf/c++/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath codec_netcdf_env = env.Clone(); codec_netcdf_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -codec_netcdf_env.headers = sorted(glob.glob(dir_path + "/*.h")) +codec_netcdf_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += codec_netcdf_env.sources; env.headers += codec_netcdf_env.headers; diff --git a/modules/codec-netcdf/c++/netcdf.hpp b/modules/codec-netcdf/c++/netcdf.hpp index 66d6391..f93eceb 100644 --- a/modules/codec-netcdf/c++/netcdf.hpp +++ b/modules/codec-netcdf/c++/netcdf.hpp @@ -1,8 +1,8 @@ #pragma once -#include <forstio/string_literal.h> -#include <forstio/error.h> -#include <forstio/codec/data.h> +#include <forstio/string_literal.hpp> +#include <forstio/error.hpp> +#include <forstio/codec/data.hpp> #include <netcdf.h> #include <netcdf_mem.h> @@ -49,7 +49,7 @@ class codec<Schema, encode::Netcdf>{ }; } -#include "netcdf.tmpl.hpp +#include "netcdf.tmpl.hpp" namespace saw { template<typename... Vals, string_literal... Keys> |