summaryrefslogtreecommitdiff
path: root/modules/codec-netcdf/c++
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec-netcdf/c++')
-rw-r--r--modules/codec-netcdf/c++/SConscript2
-rw-r--r--modules/codec-netcdf/c++/netcdf.hpp8
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>