summaryrefslogtreecommitdiff
path: root/modules/codec/c++
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++')
-rw-r--r--modules/codec/c++/SConscript2
-rw-r--r--modules/codec/c++/args.hpp2
-rw-r--r--modules/codec/c++/crc32.hpp6
-rw-r--r--modules/codec/c++/csv.hpp8
-rw-r--r--modules/codec/c++/data.hpp8
-rw-r--r--modules/codec/c++/forst.hpp2
-rw-r--r--modules/codec/c++/interface.hpp6
-rw-r--r--modules/codec/c++/schema.hpp4
-rw-r--r--modules/codec/c++/schema_factory.hpp2
-rw-r--r--modules/codec/c++/schema_hash.hpp6
-rw-r--r--modules/codec/c++/schema_stringify.hpp2
-rw-r--r--modules/codec/c++/simple.hpp8
-rw-r--r--modules/codec/c++/stream_value.hpp6
13 files changed, 31 insertions, 31 deletions
diff --git a/modules/codec/c++/SConscript b/modules/codec/c++/SConscript
index 14e7b5c..7a44574 100644
--- a/modules/codec/c++/SConscript
+++ b/modules/codec/c++/SConscript
@@ -13,7 +13,7 @@ dir_path = Dir('.').abspath
codec_env = env.Clone();
codec_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
-codec_env.headers = sorted(glob.glob(dir_path + "/*.h"))
+codec_env.headers = sorted(glob.glob(dir_path + "/*.hpp"))
env.sources += codec_env.sources;
env.headers += codec_env.headers;
diff --git a/modules/codec/c++/args.hpp b/modules/codec/c++/args.hpp
index fc5037e..eb13459 100644
--- a/modules/codec/c++/args.hpp
+++ b/modules/codec/c++/args.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.hpp
+#include "schema.hpp"
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/crc32.hpp b/modules/codec/c++/crc32.hpp
index 0d2f72b..6cd8129 100644
--- a/modules/codec/c++/crc32.hpp
+++ b/modules/codec/c++/crc32.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <forstio/common.h>
-#include "schema.hpp
-#include "data.hpp
+#include <forstio/common.hpp>
+#include "schema.hpp"
+#include "data.hpp"
namespace saw {
namespace algs {
diff --git a/modules/codec/c++/csv.hpp b/modules/codec/c++/csv.hpp
index 1cb4263..3cb11c2 100644
--- a/modules/codec/c++/csv.hpp
+++ b/modules/codec/c++/csv.hpp
@@ -1,10 +1,10 @@
#pragma once
-#include <forstio/error.h>
-#include <forstio/buffer.h>
+#include <forstio/error.hpp>
+#include <forstio/buffer.hpp>
-#include "data.hpp
-#include "stream_value.hpp
+#include "data.hpp"
+#include "stream_value.hpp"
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp
index 3aebc89..3fe7494 100644
--- a/modules/codec/c++/data.hpp
+++ b/modules/codec/c++/data.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <forstio/common.h>
-#include <forstio/error.h>
-#include <forstio/templates.h>
+#include <forstio/common.hpp>
+#include <forstio/error.hpp>
+#include <forstio/templates.hpp>
#include <cassert>
@@ -11,7 +11,7 @@
#include <variant>
#include <vector>
-#include "schema.hpp
+#include "schema.hpp"
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/forst.hpp b/modules/codec/c++/forst.hpp
index aa1532b..0e200cb 100644
--- a/modules/codec/c++/forst.hpp
+++ b/modules/codec/c++/forst.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "data.hpp
+#include "data.hpp"
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/interface.hpp b/modules/codec/c++/interface.hpp
index 7f7deb4..23eb3be 100644
--- a/modules/codec/c++/interface.hpp
+++ b/modules/codec/c++/interface.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <forstio/error.h>
-#include "schema.hpp
-#include "data.hpp
+#include <forstio/error.hpp>
+#include "schema.hpp"
+#include "data.hpp"
namespace saw {
template<typename SchemaFunc, typename Encode, typename Func>
diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp
index 4549916..1feb951 100644
--- a/modules/codec/c++/schema.hpp
+++ b/modules/codec/c++/schema.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include <forstio/common.h>
-#include <forstio/string_literal.h>
+#include <forstio/common.hpp>
+#include <forstio/string_literal.hpp>
namespace saw {
namespace schema {
diff --git a/modules/codec/c++/schema_factory.hpp b/modules/codec/c++/schema_factory.hpp
index f39c93c..8896fdf 100644
--- a/modules/codec/c++/schema_factory.hpp
+++ b/modules/codec/c++/schema_factory.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.hpp
+#include "schema.hpp"
namespace saw {
template<typename T>
diff --git a/modules/codec/c++/schema_hash.hpp b/modules/codec/c++/schema_hash.hpp
index c799311..90ab208 100644
--- a/modules/codec/c++/schema_hash.hpp
+++ b/modules/codec/c++/schema_hash.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <forstio/string_literal.h>
-#include "schema.hpp
-#include "crc32.hpp
+#include <forstio/string_literal.hpp>
+#include "schema.hpp"
+#include "crc32.hpp"
namespace saw {
template<string_literal lit>
diff --git a/modules/codec/c++/schema_stringify.hpp b/modules/codec/c++/schema_stringify.hpp
index c8d8942..05978e3 100644
--- a/modules/codec/c++/schema_stringify.hpp
+++ b/modules/codec/c++/schema_stringify.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.hpp
+#include "schema.hpp"
#include <sstream>
#include <type_traits>
diff --git a/modules/codec/c++/simple.hpp b/modules/codec/c++/simple.hpp
index 6582f35..b0b353e 100644
--- a/modules/codec/c++/simple.hpp
+++ b/modules/codec/c++/simple.hpp
@@ -1,10 +1,10 @@
#pragma once
-#include "data.hpp
-#include "stream_value.hpp
+#include "data.hpp"
+#include "stream_value.hpp"
-#include <forstio/buffer.h>
-#include <forstio/error.h>
+#include <forstio/buffer.hpp>
+#include <forstio/error.hpp>
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/stream_value.hpp b/modules/codec/c++/stream_value.hpp
index 30dff75..80613ea 100644
--- a/modules/codec/c++/stream_value.hpp
+++ b/modules/codec/c++/stream_value.hpp
@@ -1,9 +1,9 @@
#pragma once
-#include "schema.hpp
+#include "schema.hpp"
-#include <forstio/buffer.h>
-#include <forstio/error.h>
+#include <forstio/buffer.hpp>
+#include <forstio/error.hpp>
#include <cstdint>
#include <cstring>