2023-04-03 00:55:28 -07:00
|
|
|
/*
|
2023-07-18 20:33:00 -07:00
|
|
|
gencpp: An attempt at "simple" staged metaprogramming for c/c++.
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-22 19:24:55 -07:00
|
|
|
See Readme.md for more information from the project repository.
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-22 19:24:55 -07:00
|
|
|
Public Address:
|
|
|
|
https://github.com/Ed94/gencpp
|
2023-04-03 00:55:28 -07:00
|
|
|
*/
|
2023-04-01 19:21:46 -07:00
|
|
|
#pragma once
|
|
|
|
|
2023-07-29 02:52:06 -07:00
|
|
|
#include "helpers/push_ignores.inline.hpp"
|
|
|
|
#include "components/header_start.hpp"
|
2023-07-23 19:25:19 -07:00
|
|
|
|
2023-08-21 19:48:05 -07:00
|
|
|
GEN_NS_BEGIN
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-07-29 02:52:06 -07:00
|
|
|
#include "components/types.hpp"
|
2023-08-21 20:28:39 -07:00
|
|
|
#include "components/gen/ecode.hpp"
|
|
|
|
#include "components/gen/eoperator.hpp"
|
|
|
|
#include "components/gen/especifier.hpp"
|
2023-08-03 08:01:43 -07:00
|
|
|
|
|
|
|
#include "components/ast.hpp"
|
2023-11-21 17:07:49 -08:00
|
|
|
#include "components/code_types.hpp"
|
2023-08-03 08:01:43 -07:00
|
|
|
#include "components/ast_types.hpp"
|
|
|
|
|
2023-07-29 02:52:06 -07:00
|
|
|
#include "components/interface.hpp"
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-08-03 08:01:43 -07:00
|
|
|
#include "components/inlines.hpp"
|
2023-08-21 20:28:39 -07:00
|
|
|
#include "components/gen/ast_inlines.hpp"
|
2023-08-03 08:01:43 -07:00
|
|
|
#include "components/header_end.hpp"
|
2023-07-24 15:19:37 -07:00
|
|
|
|
2023-08-21 19:48:05 -07:00
|
|
|
GEN_NS_END
|
2023-07-23 19:25:19 -07:00
|
|
|
|
2023-07-29 02:52:06 -07:00
|
|
|
#include "helpers/pop_ignores.inline.hpp"
|
2024-12-04 21:40:51 -08:00
|
|
|
|
|
|
|
#undef array_init
|
|
|
|
#undef array_init_reserve
|
|
|
|
#undef array_append_array
|
|
|
|
#undef array_append_value
|
|
|
|
#undef array_append_items
|
|
|
|
#undef array_append_at
|
|
|
|
#undef array_append_at
|
|
|
|
#undef array_back
|
|
|
|
#undef array_clear
|
|
|
|
#undef array_fill
|
|
|
|
#undef array_free
|
|
|
|
#undef arary_grow
|
|
|
|
#undef array_num
|
|
|
|
#undef arary_pop
|
|
|
|
#undef arary_remove_at
|
|
|
|
#undef arary_reserve
|
|
|
|
#undef arary_resize
|
|
|
|
#undef arary_set_capacity
|
|
|
|
#undef arary_get_header
|
|
|
|
|
|
|
|
#undef hashtable_init
|
|
|
|
#undef hashtable_init_reserve
|
|
|
|
#undef hashtable_clear
|
|
|
|
#undef hashtable_destroy
|
|
|
|
#undef hashtable_get
|
|
|
|
#undef hashtable_grow
|
|
|
|
#undef hashtable_rehash
|
|
|
|
#undef hashtable_rehash_fast
|
|
|
|
#undef hashtable_remove
|
|
|
|
#undef hashtable_remove_entry
|
|
|
|
#undef hashtable_set
|
|
|
|
#undef hashtable_slot
|
|
|
|
#undef hashtable_add_entry
|
|
|
|
#undef hashtable_find
|
|
|
|
#undef hashtable_full
|
|
|
|
#undef hashtable_map
|
|
|
|
#undef hashtable_map_mut
|