aboutsummaryrefslogtreecommitdiff
path: root/core/src/Utils/IO/VectorIntegration.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-08-15 19:20:55 -0700
committerrtk0c <[email protected]>2021-08-15 19:20:55 -0700
commitb79a244d76c66287c6228e3845aa3af91a847f5d (patch)
treea6a425395ffc534dbc5532b274543c14dc5d53c5 /core/src/Utils/IO/VectorIntegration.hpp
parentc51a61c0f0de65a3e64f589816a56f21ed4e8528 (diff)
More work on IO adapters (not working)
Diffstat (limited to 'core/src/Utils/IO/VectorIntegration.hpp')
-rw-r--r--core/src/Utils/IO/VectorIntegration.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/Utils/IO/VectorIntegration.hpp b/core/src/Utils/IO/VectorIntegration.hpp
index b2c751c..45929ed 100644
--- a/core/src/Utils/IO/VectorIntegration.hpp
+++ b/core/src/Utils/IO/VectorIntegration.hpp
@@ -1,9 +1,8 @@
#pragma once
-#include "Utils/IO/DataStream.hpp"
-
#include <vector>
+namespace DataStreamIntegrations {
template <class TElement>
void ReadFromDataStream(DataStream& s, std::vecetor<TElement>& vec)
{
@@ -26,3 +25,4 @@ void WriteToDataStream(DataStream& s, const std::vecetor<TElement>& vec)
// TODO
}
}
+} // namespace DataStreamIntegrations