Sources/Include/UICore/core.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 #include "Core/Text/string_format.h"
32 #include "Core/Text/text.h"
33 #include "Core/Text/utf8_reader.h"
34 #include "Core/System/singleton_bugfix.h"
35 #include "Core/System/comptr.h"
36 #include "Core/System/databuffer.h"
37 #include "Core/System/datetime.h"
38 #include "Core/System/disposable_object.h"
39 #include "Core/System/exception.h"
40 #include "Core/System/service.h"
41 #include "Core/System/system.h"
42 #include "Core/System/registry_key.h"
43 #include "Core/ErrorReporting/crash_reporter.h"
44 #include "Core/ErrorReporting/exception_dialog.h"
45 #include "Core/Signals/signal.h"
46 #include "Core/IOData/endian.h"
47 #include "Core/IOData/iodevice.h"
48 #include "Core/IOData/memory_device.h"
49 #include "Core/IOData/file.h"
50 #include "Core/IOData/path_help.h"
51 #include "Core/IOData/directory.h"
52 #include "Core/IOData/directory_scanner.h"
53 #include "Core/Zip/zlib_compression.h"
54 #include "Core/Math/angle.h"
55 #include "Core/Math/base64_encoder.h"
56 #include "Core/Math/base64_decoder.h"
57 #include "Core/Math/circle.h"
58 #include "Core/Math/color.h"
59 #include "Core/Math/color_hsv.h"
60 #include "Core/Math/color_hsl.h"
61 #include "Core/Math/vec2.h"
62 #include "Core/Math/vec3.h"
63 #include "Core/Math/vec4.h"
64 #include "Core/Math/ear_clip_triangulator.h"
65 #include "Core/Math/line_math.h"
66 #include "Core/Math/cl_math.h"
67 #include "Core/Math/quaternion.h"
68 #include "Core/Math/mat2.h"
69 #include "Core/Math/mat3.h"
70 #include "Core/Math/mat4.h"
71 #include "Core/Math/origin.h"
72 #include "Core/Math/point.h"
73 #include "Core/Math/pointset_math.h"
74 #include "Core/Math/quad.h"
75 #include "Core/Math/rect.h"
76 #include "Core/Math/rect_packer.h"
77 #include "Core/Math/half_float.h"
78 #include "Core/Math/half_float_vector.h"
79 #include "Core/Math/big_int.h"
80 #include "Core/Math/frustum_planes.h"
81 #include "Core/Math/intersection_test.h"
82 #include "Core/Math/aabb.h"
83 #include "Core/Math/obb.h"
84 #include "Core/Math/easing.h"
85 #include "Core/Math/pi.h"
86 #include "Core/Math/size.h"
87 #include "Core/Math/triangle_math.h"
88 #include "Core/Math/line.h"
89 #include "Core/Math/line_ray.h"
90 #include "Core/Math/line_segment.h"
91 #include "Core/Crypto/random.h"
92 #include "Core/Crypto/secret.h"
93 #include "Core/Crypto/sha1.h"
94 #include "Core/Crypto/md5.h"
95 #include "Core/Crypto/sha224.h"
96 #include "Core/Crypto/sha256.h"
97 #include "Core/Crypto/sha384.h"
98 #include "Core/Crypto/sha512.h"
99 #include "Core/Crypto/sha512_224.h"
100 #include "Core/Crypto/sha512_256.h"
101 #include "Core/Crypto/aes128_encrypt.h"
102 #include "Core/Crypto/aes128_decrypt.h"
103 #include "Core/Crypto/aes192_encrypt.h"
104 #include "Core/Crypto/aes192_decrypt.h"
105 #include "Core/Crypto/aes256_encrypt.h"
106 #include "Core/Crypto/aes256_decrypt.h"
107 #include "Core/Crypto/rsa.h"
108 #include "Core/Crypto/tls_client.h"
109 #include "Core/Crypto/hash_functions.h"
110 #include "Core/Json/json_value.h"
111 #include "Core/Xml/xml_document.h"
112 #include "Core/Xml/xml_node.h"
113 #include "Core/Xml/xml_tokenizer.h"
114 #include "Core/Xml/xml_writer.h"
115 #include "Core/Xml/xml_token.h"