summaryrefslogtreecommitdiff
path: root/modules/io_codec
diff options
context:
space:
mode:
Diffstat (limited to 'modules/io_codec')
-rw-r--r--modules/io_codec/SConscript2
-rw-r--r--modules/io_codec/io_peer.hpp10
-rw-r--r--modules/io_codec/rpc.hpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/modules/io_codec/SConscript b/modules/io_codec/SConscript
index 0afd6d6..2a277cb 100644
--- a/modules/io_codec/SConscript
+++ b/modules/io_codec/SConscript
@@ -13,7 +13,7 @@ dir_path = Dir('.').abspath
io_env = env.Clone();
io_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
-io_env.headers = sorted(glob.glob(dir_path + "/*.h"))
+io_env.headers = sorted(glob.glob(dir_path + "/*.hpp"))
env.sources += io_env.sources;
env.headers += io_env.headers;
diff --git a/modules/io_codec/io_peer.hpp b/modules/io_codec/io_peer.hpp
index 46a7d11..9ba623f 100644
--- a/modules/io_codec/io_peer.hpp
+++ b/modules/io_codec/io_peer.hpp
@@ -1,9 +1,9 @@
#pragma once
-#include <forstio/async/async.h>
-#include <forstio/buffer.h>
-#include <forsto/io/io.h>
-#include <forstio/schema/message.h>
+#include <forstio/async/async.hpp>
+#include <forstio/buffer.hpp>
+#include <forsto/io/io.hpp>
+#include <forstio/schema/message.hpp>
namespace saw {
@@ -101,4 +101,4 @@ new_streaming_io_peer(own<async_io_stream> stream);
} // namespace saw
-#include "io_peer.tmpl.hpp
+#include "io_peer.tmpl.hpp"
diff --git a/modules/io_codec/rpc.hpp b/modules/io_codec/rpc.hpp
index 020bf96..eec149f 100644
--- a/modules/io_codec/rpc.hpp
+++ b/modules/io_codec/rpc.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <forstio/codec/rpc.h>
+#include <forstio/codec/rpc.hpp>
namespace saw {
namespace rmt {