diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 13:12:11 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 13:12:11 +0100 |
commit | 8dad985328e2183b224300aa992951131956fdb3 (patch) | |
tree | ceda3d9805335f36f571fb36585444ebdb421a02 /modules/window | |
parent | a9d2025030d0a7641f4b0701bd4aff7d2db5aeb4 (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/window')
-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 |
6 files changed, 7 insertions, 7 deletions
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> |