summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/codec-json/c++/json.hpp (renamed from modules/codec-json/c++/json.h)2
-rw-r--r--modules/codec-json/c++/json.tmpl.hpp (renamed from modules/codec-json/c++/json.tmpl.h)0
-rw-r--r--modules/codec-minecraft/minecraft.hpp (renamed from modules/codec-minecraft/minecraft.h)0
-rw-r--r--modules/codec-minecraft/var_int_data.hpp (renamed from modules/codec-minecraft/var_int_data.h)0
-rw-r--r--modules/codec-netcdf/c++/netcdf.hpp (renamed from modules/codec-netcdf/c++/netcdf.h)2
-rw-r--r--modules/codec-netcdf/c++/netcdf.tmpl.hpp (renamed from modules/codec-netcdf/c++/netcdf.tmpl.h)0
-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
-rw-r--r--modules/core/c++/test/suite.hpp (renamed from modules/core/c++/test/suite.h)2
-rw-r--r--modules/device-hip/c++/rpc.hpp (renamed from modules/device-hip/c++/rpc.h)0
-rw-r--r--modules/io-tls/tls.hpp (renamed from modules/io-tls/tls.h)0
-rw-r--r--modules/io/io.hpp (renamed from modules/io/io.h)2
-rw-r--r--modules/io/io_helpers.hpp (renamed from modules/io/io_helpers.h)0
-rw-r--r--modules/io_codec/io_peer.hpp (renamed from modules/io_codec/io_peer.h)2
-rw-r--r--modules/io_codec/io_peer.tmpl.hpp (renamed from modules/io_codec/io_peer.tmpl.h)0
-rw-r--r--modules/io_codec/rpc.hpp (renamed from modules/io_codec/rpc.h)0
-rw-r--r--modules/window-opengl/gl_backends.hpp (renamed from modules/window-opengl/gl_backends.h)0
-rw-r--r--modules/window-opengl/gl_context.hpp (renamed from modules/window-opengl/gl_context.h)0
-rw-r--r--modules/window-opengl/gl_window.hpp (renamed from modules/window-opengl/gl_window.h)0
-rw-r--r--modules/window-opengl/gl_xcb.hpp (renamed from modules/window-opengl/gl_xcb.h)6
-rw-r--r--modules/window/c++/backends.hpp (renamed from modules/window/c++/backends.h)0
-rw-r--r--modules/window/c++/device.hpp (renamed from modules/window/c++/device.h)2
-rw-r--r--modules/window/c++/linux_xcb.hpp (renamed from modules/window/c++/linux_xcb.h)2
-rw-r--r--modules/window/c++/video_mode.hpp (renamed from modules/window/c++/video_mode.h)0
-rw-r--r--modules/window/c++/window.hpp (renamed from modules/window/c++/window.h)4
-rw-r--r--modules/window/c++/xcb.hpp (renamed from modules/window/c++/xcb.h)6
38 files changed, 31 insertions, 31 deletions
diff --git a/modules/codec-json/c++/json.h b/modules/codec-json/c++/json.hpp
index bc60ee9..d81a508 100644
--- a/modules/codec-json/c++/json.h
+++ b/modules/codec-json/c++/json.hpp
@@ -60,7 +60,7 @@ public:
};
}
-#include "json.tmpl.h"
+#include "json.tmpl.hpp
namespace saw {
diff --git a/modules/codec-json/c++/json.tmpl.h b/modules/codec-json/c++/json.tmpl.hpp
index 84f0058..84f0058 100644
--- a/modules/codec-json/c++/json.tmpl.h
+++ b/modules/codec-json/c++/json.tmpl.hpp
diff --git a/modules/codec-minecraft/minecraft.h b/modules/codec-minecraft/minecraft.hpp
index c54549e..c54549e 100644
--- a/modules/codec-minecraft/minecraft.h
+++ b/modules/codec-minecraft/minecraft.hpp
diff --git a/modules/codec-minecraft/var_int_data.h b/modules/codec-minecraft/var_int_data.hpp
index 4fbdd57..4fbdd57 100644
--- a/modules/codec-minecraft/var_int_data.h
+++ b/modules/codec-minecraft/var_int_data.hpp
diff --git a/modules/codec-netcdf/c++/netcdf.h b/modules/codec-netcdf/c++/netcdf.hpp
index 52ad494..66d6391 100644
--- a/modules/codec-netcdf/c++/netcdf.h
+++ b/modules/codec-netcdf/c++/netcdf.hpp
@@ -49,7 +49,7 @@ class codec<Schema, encode::Netcdf>{
};
}
-#include "netcdf.tmpl.h"
+#include "netcdf.tmpl.hpp
namespace saw {
template<typename... Vals, string_literal... Keys>
diff --git a/modules/codec-netcdf/c++/netcdf.tmpl.h b/modules/codec-netcdf/c++/netcdf.tmpl.hpp
index bf257e4..bf257e4 100644
--- a/modules/codec-netcdf/c++/netcdf.tmpl.h
+++ b/modules/codec-netcdf/c++/netcdf.tmpl.hpp
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>
diff --git a/modules/core/c++/test/suite.h b/modules/core/c++/test/suite.hpp
index e28a94c..fd6ca68 100644
--- a/modules/core/c++/test/suite.h
+++ b/modules/core/c++/test/suite.hpp
@@ -5,7 +5,7 @@
#include <stdexcept>
#include <type_traits>
-#include "../common.h"
+#include "../common.hpp
namespace saw {
namespace test {
diff --git a/modules/device-hip/c++/rpc.h b/modules/device-hip/c++/rpc.hpp
index 0bcda0c..0bcda0c 100644
--- a/modules/device-hip/c++/rpc.h
+++ b/modules/device-hip/c++/rpc.hpp
diff --git a/modules/io-tls/tls.h b/modules/io-tls/tls.hpp
index b7d575b..b7d575b 100644
--- a/modules/io-tls/tls.h
+++ b/modules/io-tls/tls.hpp
diff --git a/modules/io/io.h b/modules/io/io.hpp
index b58394e..e2022be 100644
--- a/modules/io/io.h
+++ b/modules/io/io.hpp
@@ -2,7 +2,7 @@
#include <forstio/async/async.h>
#include <forstio/common.h>
-#include "io_helpers.h"
+#include "io_helpers.hpp
#include <string>
#include <variant>
diff --git a/modules/io/io_helpers.h b/modules/io/io_helpers.hpp
index 761ee35..761ee35 100644
--- a/modules/io/io_helpers.h
+++ b/modules/io/io_helpers.hpp
diff --git a/modules/io_codec/io_peer.h b/modules/io_codec/io_peer.hpp
index b9a4b34..46a7d11 100644
--- a/modules/io_codec/io_peer.h
+++ b/modules/io_codec/io_peer.hpp
@@ -101,4 +101,4 @@ new_streaming_io_peer(own<async_io_stream> stream);
} // namespace saw
-#include "io_peer.tmpl.h"
+#include "io_peer.tmpl.hpp
diff --git a/modules/io_codec/io_peer.tmpl.h b/modules/io_codec/io_peer.tmpl.hpp
index 880a58a..880a58a 100644
--- a/modules/io_codec/io_peer.tmpl.h
+++ b/modules/io_codec/io_peer.tmpl.hpp
diff --git a/modules/io_codec/rpc.h b/modules/io_codec/rpc.hpp
index 020bf96..020bf96 100644
--- a/modules/io_codec/rpc.h
+++ b/modules/io_codec/rpc.hpp
diff --git a/modules/window-opengl/gl_backends.h b/modules/window-opengl/gl_backends.hpp
index 652954f..652954f 100644
--- a/modules/window-opengl/gl_backends.h
+++ b/modules/window-opengl/gl_backends.hpp
diff --git a/modules/window-opengl/gl_context.h b/modules/window-opengl/gl_context.hpp
index 685e527..685e527 100644
--- a/modules/window-opengl/gl_context.h
+++ b/modules/window-opengl/gl_context.hpp
diff --git a/modules/window-opengl/gl_window.h b/modules/window-opengl/gl_window.hpp
index 3bb9f83..3bb9f83 100644
--- a/modules/window-opengl/gl_window.h
+++ b/modules/window-opengl/gl_window.hpp
diff --git a/modules/window-opengl/gl_xcb.h b/modules/window-opengl/gl_xcb.hpp
index 0d84662..a737e41 100644
--- a/modules/window-opengl/gl_xcb.h
+++ b/modules/window-opengl/gl_xcb.hpp
@@ -6,9 +6,9 @@
#error "OpenGL is not supported"
#endif
-#include "gl_backends.h"
-#include "gl_context.h"
-#include "gl_window.h"
+#include "gl_backends.hpp
+#include "gl_context.hpp
+#include "gl_window.hpp
#include <GL/glx.h>
diff --git a/modules/window/c++/backends.h b/modules/window/c++/backends.hpp
index e129037..e129037 100644
--- a/modules/window/c++/backends.h
+++ b/modules/window/c++/backends.hpp
diff --git a/modules/window/c++/device.h b/modules/window/c++/device.hpp
index 6a28cd5..f2524db 100644
--- a/modules/window/c++/device.h
+++ b/modules/window/c++/device.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "window.h"
+#include "window.hpp
#include <forstio/async/async.h>
#include <forstio/common.h>
diff --git a/modules/window/c++/linux_xcb.h b/modules/window/c++/linux_xcb.hpp
index 65ff94d..534404c 100644
--- a/modules/window/c++/linux_xcb.h
+++ b/modules/window/c++/linux_xcb.hpp
@@ -1,5 +1,5 @@
#pragma once
#ifdef SAW_UNIX_XCB
-#include "xcb.h"
+#include "xcb.hpp
#endif
diff --git a/modules/window/c++/video_mode.h b/modules/window/c++/video_mode.hpp
index a8f1695..a8f1695 100644
--- a/modules/window/c++/video_mode.h
+++ b/modules/window/c++/video_mode.hpp
diff --git a/modules/window/c++/window.h b/modules/window/c++/window.hpp
index 0e8d051..4637ea7 100644
--- a/modules/window/c++/window.h
+++ b/modules/window/c++/window.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "video_mode.h"
+#include "video_mode.hpp
#include <forstio/async/async.h>
#include <forstio/common.h>
@@ -27,7 +27,7 @@ class window;
}
}
-#include "linux_xcb.h"
+#include "linux_xcb.hpp
/**
namespace saw {
diff --git a/modules/window/c++/xcb.h b/modules/window/c++/xcb.hpp
index a2a9b0b..4c7b9fa 100644
--- a/modules/window/c++/xcb.h
+++ b/modules/window/c++/xcb.hpp
@@ -4,9 +4,9 @@
#error "XCB is not supported"
#endif
-#include "backends.h"
-#include "device.h"
-#include "window.h"
+#include "backends.hpp
+#include "device.hpp
+#include "window.hpp
#include <map>