AuroraRuntime/Include/Aurora/IO/IO.hpp

27 lines
607 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 "ISeekingReader.hpp" // arbitrary read stream, dunno what you would want to call thousands_sep
#include "Buffered/Buffered.hpp"
#include "IAsyncFinishedSubscriber.hpp"
#include "IAsyncTransaction.hpp"
#include "FS/FS.hpp"
#include "Net/Net.hpp"
#include "Character/Character.hpp"
#if defined(AURORA_IS_POSIX_DERIVED)
#include "UNIX/UNIX.hpp"
#endif