14 lines
475 B
C++
14 lines
475 B
C++
/***
|
|
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" |