[*] Move NewByteBufferPair, NewByteBufferPairEx, and NewRingByteBuffer to AuIO::Utility

This commit is contained in:
Reece Wilson 2023-09-28 11:51:46 +01:00
parent 374df4a92b
commit 5555e99488
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@
#include "IIOPipeInterceptor.hpp"
#include "IIOBufferedProcessor.hpp"
#include "IByteBufferStreamPair.hpp"
#include "Utility/IByteBufferStreamPair.hpp"
#include "Adapters/IOAdapterAsyncStream.hpp"
#include "Adapters/IOAdapterByteBuffer.hpp"

View File

@ -7,7 +7,7 @@
***/
#pragma once
namespace Aurora::IO
namespace Aurora::IO::Utility
{
struct IByteBufferStreamPair
{

View File

@ -9,7 +9,7 @@
#include <Aurora/IO/IOExperimental.hpp>
#include "AuByteBufferStreamPair.hpp"
namespace Aurora::IO
namespace Aurora::IO::Utility
{
ByteBufferStreamPair::ByteBufferStreamPair(const AuSPtr<Memory::ByteBuffer> &pBuffer) :
pBuffer(pBuffer),

View File

@ -7,7 +7,7 @@
***/
#pragma once
namespace Aurora::IO
namespace Aurora::IO::Utility
{
struct ByteBufferStreamPair : IByteBufferStreamPair, AuEnableSharedFromThis<ByteBufferStreamPair>
{