Echo Writes Code

core.hpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef CRUCIBLE_CORE_HPP
#define CRUCIBLE_CORE_HPP

#include "crucible/core/assert.hpp"
#include "crucible/core/backtrace.hpp"
#include "crucible/core/boot.hpp"
#include "crucible/core/collections.hpp"
#include "crucible/core/console.hpp"
#include "crucible/core/demangle.hpp"
#include "crucible/core/environment.hpp"
#include "crucible/core/errors.hpp"
#include "crucible/core/filesystem.hpp"
#include "crucible/core/format.hpp"
#include "crucible/core/handlers.hpp"
#include "crucible/core/hash.hpp"
#include "crucible/core/iterator.hpp"
#include "crucible/core/math.hpp"
#include "crucible/core/memory.hpp"
#include "crucible/core/option.hpp"
#include "crucible/core/random.hpp"
#include "crucible/core/result.hpp"
#include "crucible/core/string.hpp"
#include "crucible/core/platform.hpp"
#include "crucible/core/unicode.hpp"
#include "crucible/core/utility.hpp"

#endif // CRUCIBLE_CORE_HPP