Move dependencies to the top level.

This commit is contained in:
jakcron
2022-04-16 18:27:14 +08:00
parent b67980d3d2
commit 5d62e839e7
844 changed files with 74 additions and 114431 deletions
-37
View File
@@ -1,37 +0,0 @@
/**
* @file tc.h
* @brief Declaration of the libtoolchain namespace
**/
#pragma once
#include <tc/types.h>
/**
* @namespace tc
* @brief Root namespace for libtoolchain
**/
// classes
#include <tc/ByteData.h>
#include <tc/Optional.h>
// sub namespaces
#include <tc/string.h>
#include <tc/io.h>
#include <tc/os.h>
#include <tc/crypto.h>
#include <tc/cli.h>
#include <tc/bn.h>
// exceptions
#include <tc/Exception.h>
#include <tc/AccessViolationException.h>
#include <tc/ArgumentException.h>
#include <tc/ArgumentNullException.h>
#include <tc/ArgumentOutOfRangeException.h>
#include <tc/ArithmeticException.h>
#include <tc/InvalidOperationException.h>
#include <tc/NotImplementedException.h>
#include <tc/NotSupportedException.h>
#include <tc/ObjectDisposedException.h>
#include <tc/OutOfMemoryException.h>
#include <tc/OverflowException.h>
#include <tc/UnauthorisedAccessException.h>