Spicy
libhilti.h
1 // Copyright (c) 2020-2021 by the Zeek Project. See LICENSE for details.
2 
3 // Do not use "#pragma once here". We use this file as top-level for header
4 // pre-compilation, and GCC doesn't like that there.
5 // See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64117
6 #ifndef HILTI_RUNTIME_LIBHILTI_H
7 #define HILTI_RUNTIME_LIBHILTI_H
8 
9 #include <hilti/rt/autogen/config.h>
10 #include <hilti/rt/configuration.h>
11 #include <hilti/rt/context.h>
12 #include <hilti/rt/deferred-expression.h>
13 #include <hilti/rt/exception.h>
14 #include <hilti/rt/extension-points.h>
15 #include <hilti/rt/hilti.h>
16 #include <hilti/rt/init.h>
17 #include <hilti/rt/library.h>
18 #include <hilti/rt/linker.h>
19 #include <hilti/rt/logging.h>
20 #include <hilti/rt/result.h>
21 #include <hilti/rt/safe-int.h>
22 #include <hilti/rt/type-info.h>
23 #include <hilti/rt/types/all.h>
24 #include <hilti/rt/util.h>
25 
26 using namespace hilti::rt::bytes::literals; // NOLINT (google-global-names-in-headers)
27 
28 #endif
Definition: bytes.h:523