summaryrefslogtreecommitdiff
path: root/modules/codec/c++
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-01-23 13:12:11 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-01-23 13:12:11 +0100
commit8dad985328e2183b224300aa992951131956fdb3 (patch)
treeceda3d9805335f36f571fb36585444ebdb421a02 /modules/codec/c++
parenta9d2025030d0a7641f4b0701bd4aff7d2db5aeb4 (diff)
core,codec-json,codec-minecraft,codec-netcdf,codec,io-tls,io,io_codec,window,window-opengl:
Renamed file endings and changed includes
Diffstat (limited to 'modules/codec/c++')
-rw-r--r--modules/codec/c++/args.hpp (renamed from modules/codec/c++/args.h)2
-rw-r--r--modules/codec/c++/crc32.hpp (renamed from modules/codec/c++/crc32.h)4
-rw-r--r--modules/codec/c++/csv.hpp (renamed from modules/codec/c++/csv.h)4
-rw-r--r--modules/codec/c++/data.hpp (renamed from modules/codec/c++/data.h)2
-rw-r--r--modules/codec/c++/forst.hpp (renamed from modules/codec/c++/forst.h)2
-rw-r--r--modules/codec/c++/forst.tmpl.hpp (renamed from modules/codec/c++/forst.tmpl.h)0
-rw-r--r--modules/codec/c++/interface.hpp (renamed from modules/codec/c++/interface.h)4
-rw-r--r--modules/codec/c++/rpc.hpp (renamed from modules/codec/c++/rpc.h)0
-rw-r--r--modules/codec/c++/schema.hpp (renamed from modules/codec/c++/schema.h)0
-rw-r--r--modules/codec/c++/schema_factory.hpp (renamed from modules/codec/c++/schema_factory.h)2
-rw-r--r--modules/codec/c++/schema_hash.hpp (renamed from modules/codec/c++/schema_hash.h)4
-rw-r--r--modules/codec/c++/schema_stringify.hpp (renamed from modules/codec/c++/schema_stringify.h)2
-rw-r--r--modules/codec/c++/simple.hpp (renamed from modules/codec/c++/simple.h)4
-rw-r--r--modules/codec/c++/stream_value.hpp (renamed from modules/codec/c++/stream_value.h)2
14 files changed, 16 insertions, 16 deletions
diff --git a/modules/codec/c++/args.h b/modules/codec/c++/args.hpp
index 6bb75a2..fc5037e 100644
--- a/modules/codec/c++/args.h
+++ b/modules/codec/c++/args.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.h"
+#include "schema.hpp
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/crc32.h b/modules/codec/c++/crc32.hpp
index c67c16e..0d2f72b 100644
--- a/modules/codec/c++/crc32.h
+++ b/modules/codec/c++/crc32.hpp
@@ -1,8 +1,8 @@
#pragma once
#include <forstio/common.h>
-#include "schema.h"
-#include "data.h"
+#include "schema.hpp
+#include "data.hpp
namespace saw {
namespace algs {
diff --git a/modules/codec/c++/csv.h b/modules/codec/c++/csv.hpp
index d35bb2d..1cb4263 100644
--- a/modules/codec/c++/csv.h
+++ b/modules/codec/c++/csv.hpp
@@ -3,8 +3,8 @@
#include <forstio/error.h>
#include <forstio/buffer.h>
-#include "data.h"
-#include "stream_value.h"
+#include "data.hpp
+#include "stream_value.hpp
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/data.h b/modules/codec/c++/data.hpp
index f8fdf88..3aebc89 100644
--- a/modules/codec/c++/data.h
+++ b/modules/codec/c++/data.hpp
@@ -11,7 +11,7 @@
#include <variant>
#include <vector>
-#include "schema.h"
+#include "schema.hpp
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/forst.h b/modules/codec/c++/forst.hpp
index 7e8fbf0..aa1532b 100644
--- a/modules/codec/c++/forst.h
+++ b/modules/codec/c++/forst.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "data.h"
+#include "data.hpp
namespace saw {
namespace encode {
diff --git a/modules/codec/c++/forst.tmpl.h b/modules/codec/c++/forst.tmpl.hpp
index 30d18ef..30d18ef 100644
--- a/modules/codec/c++/forst.tmpl.h
+++ b/modules/codec/c++/forst.tmpl.hpp
diff --git a/modules/codec/c++/interface.h b/modules/codec/c++/interface.hpp
index 89bfc26..7f7deb4 100644
--- a/modules/codec/c++/interface.h
+++ b/modules/codec/c++/interface.hpp
@@ -1,8 +1,8 @@
#pragma once
#include <forstio/error.h>
-#include "schema.h"
-#include "data.h"
+#include "schema.hpp
+#include "data.hpp
namespace saw {
template<typename SchemaFunc, typename Encode, typename Func>
diff --git a/modules/codec/c++/rpc.h b/modules/codec/c++/rpc.hpp
index e275102..e275102 100644
--- a/modules/codec/c++/rpc.h
+++ b/modules/codec/c++/rpc.hpp
diff --git a/modules/codec/c++/schema.h b/modules/codec/c++/schema.hpp
index 4549916..4549916 100644
--- a/modules/codec/c++/schema.h
+++ b/modules/codec/c++/schema.hpp
diff --git a/modules/codec/c++/schema_factory.h b/modules/codec/c++/schema_factory.hpp
index bb8588f..f39c93c 100644
--- a/modules/codec/c++/schema_factory.h
+++ b/modules/codec/c++/schema_factory.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.h"
+#include "schema.hpp
namespace saw {
template<typename T>
diff --git a/modules/codec/c++/schema_hash.h b/modules/codec/c++/schema_hash.hpp
index 29afa5e..c799311 100644
--- a/modules/codec/c++/schema_hash.h
+++ b/modules/codec/c++/schema_hash.hpp
@@ -1,8 +1,8 @@
#pragma once
#include <forstio/string_literal.h>
-#include "schema.h"
-#include "crc32.h"
+#include "schema.hpp
+#include "crc32.hpp
namespace saw {
template<string_literal lit>
diff --git a/modules/codec/c++/schema_stringify.h b/modules/codec/c++/schema_stringify.hpp
index a82081a..c8d8942 100644
--- a/modules/codec/c++/schema_stringify.h
+++ b/modules/codec/c++/schema_stringify.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.h"
+#include "schema.hpp
#include <sstream>
#include <type_traits>
diff --git a/modules/codec/c++/simple.h b/modules/codec/c++/simple.hpp
index aff0626..6582f35 100644
--- a/modules/codec/c++/simple.h
+++ b/modules/codec/c++/simple.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include "data.h"
-#include "stream_value.h"
+#include "data.hpp
+#include "stream_value.hpp
#include <forstio/buffer.h>
#include <forstio/error.h>
diff --git a/modules/codec/c++/stream_value.h b/modules/codec/c++/stream_value.hpp
index b5a58bd..30dff75 100644
--- a/modules/codec/c++/stream_value.h
+++ b/modules/codec/c++/stream_value.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "schema.h"
+#include "schema.hpp
#include <forstio/buffer.h>
#include <forstio/error.h>