-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcore.h
executable file
·37 lines (36 loc) · 1.1 KB
/
core.h
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
28
29
30
31
32
33
34
35
36
37
// The core library - copyright GarageGames. The core library is released under the MIT Open Source software license. See /license.txt in this distribution for specific license terms.
#include "assert.h"
#include "base_type_declarations.h"
#include "base_type_traits.h"
#include "cpu_endian.h"
#include "algorithm_templates.h"
#include "memory_functions.h"
#include "construct.h"
#include "array.h"
#include "formatted_string_buffer.h"
#include "string.h"
#include "byte_stream_fixed.h"
#include "base_type_io.h"
#include "utils.h"
#include "ref_object.h"
#include "byte_buffer.h"
#include "power_two_functions.h"
#include "bit_stream.h"
#include "zone_allocator.h"
#include "page_allocator.h"
#include "log.h"
#include "thread.h"
#include "thread_queue.h"
#include "hash.h"
#include "small_block_allocator.h"
#include "indexed_string.h"
#include "type_record.h"
#include "context.h"
#include "function_record.h"
#include "function_call_record.h"
#include "hash_table_flat.h"
#include "hash_table_array.h"
#include "dictionary.h"
#include "static_to_indexed_string_map.h"
#include "type_database.h"
#include "functor.h"