Files
Project_CTR/deps/libtoolchain/include/tc/io.h
T
2022-04-16 18:27:14 +08:00

48 lines
1.2 KiB
C

/**
* @file io.h
* @brief Declaration of the input/output library
**/
#pragma once
#include <tc/types.h>
#include <tc/Exception.h>
/**
* @namespace tc::io
* @brief Namespace of the input/output library
**/
#include <tc/io/Path.h>
#include <tc/io/PathUtil.h>
#include <tc/io/IPathResolver.h>
#include <tc/io/IPortablePathResolver.h>
#include <tc/io/BasicPathResolver.h>
#include <tc/io/IStream.h>
#include <tc/io/FileStream.h>
#include <tc/io/SubStream.h>
#include <tc/io/MemoryStream.h>
#include <tc/io/ConcatenatedStream.h>
#include <tc/io/IFileSystem.h>
#include <tc/io/LocalFileSystem.h>
#include <tc/io/SubFileSystem.h>
#include <tc/io/VirtualFileSystem.h>
#include <tc/io/ISink.h>
#include <tc/io/SubSink.h>
#include <tc/io/StreamSink.h>
#include <tc/io/ISource.h>
#include <tc/io/PaddingSource.h>
#include <tc/io/SubSource.h>
#include <tc/io/StreamSource.h>
#include <tc/io/MemorySource.h>
#include <tc/io/OverlayedSource.h>
// Exceptions
#include <tc/io/IOException.h>
#include <tc/io/DirectoryNotEmptyException.h>
#include <tc/io/DirectoryNotFoundException.h>
#include <tc/io/FileExistsException.h>
#include <tc/io/FileNotFoundException.h>
#include <tc/io/PathTooLongException.h>