19 lines
428 B
C++
19 lines
428 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IO.hpp
|
|
Date: 2021-6-9
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "EStreamError.hpp"
|
|
|
|
#include "IStreamReader.hpp"
|
|
#include "IStreamWriter.hpp"
|
|
#include "IArbitraryStreamer.hpp" // arbitrary read stream, dunno what you would want to call thousands_sep
|
|
|
|
#include "Buffered/Buffered.hpp"
|
|
|
|
#include "FS/FS.hpp"
|
|
#include "Net/Net.hpp" |