diff options
Diffstat (limited to 'core/src/Utils/IO/VectorIntegration.hpp')
-rw-r--r-- | core/src/Utils/IO/VectorIntegration.hpp | 4 |
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 |