AuroraRuntime/Include/Aurora/IO/Buffered/Buffered.hpp

14 lines
475 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Buffered.hpp
Date: 2021-6-11
Author: Reece
***/
#pragma once
// Most internal transactions will be buffered.
// For sake of being able to mix network, file, serial, and other code, its nice to use the same reader interface for buffered and streams where read/write until EOS is required
#include "BlobArbitraryReader.hpp"
#include "BlobReader.hpp"
#include "BlobWriter.hpp"