Add source code for ctrtool

This commit is contained in:
jakcron
2022-03-12 16:00:33 +08:00
parent 6ad2f13c50
commit 800f5776bc
681 changed files with 219734 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
/**
* @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>