mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
48 lines
1.2 KiB
C
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> |