2023-04-03 03:55:28 -04:00
|
|
|
/*
|
2023-07-18 23:33:00 -04:00
|
|
|
gencpp: An attempt at "simple" staged metaprogramming for c/c++.
|
2023-04-06 02:21:23 -04:00
|
|
|
|
2023-04-22 22:24:55 -04:00
|
|
|
See Readme.md for more information from the project repository.
|
2023-04-06 02:21:23 -04:00
|
|
|
|
2023-04-22 22:24:55 -04:00
|
|
|
Public Address:
|
|
|
|
https://github.com/Ed94/gencpp
|
2023-04-03 03:55:28 -04:00
|
|
|
*/
|
2023-04-01 22:21:46 -04:00
|
|
|
#pragma once
|
|
|
|
|
2023-07-29 05:52:06 -04:00
|
|
|
#include "helpers/push_ignores.inline.hpp"
|
|
|
|
#include "components/header_start.hpp"
|
2023-07-23 22:25:19 -04:00
|
|
|
|
2024-12-05 17:04:17 -05:00
|
|
|
// Has container defines pushed
|
|
|
|
#include "gen.dep.hpp"
|
|
|
|
|
2023-08-21 22:48:05 -04:00
|
|
|
GEN_NS_BEGIN
|
2023-07-18 23:33:00 -04:00
|
|
|
|
2023-07-29 05:52:06 -04:00
|
|
|
#include "components/types.hpp"
|
2023-08-21 23:28:39 -04:00
|
|
|
#include "components/gen/ecode.hpp"
|
|
|
|
#include "components/gen/eoperator.hpp"
|
|
|
|
#include "components/gen/especifier.hpp"
|
2023-08-03 11:01:43 -04:00
|
|
|
|
|
|
|
#include "components/ast.hpp"
|
2023-11-21 20:07:49 -05:00
|
|
|
#include "components/code_types.hpp"
|
2023-08-03 11:01:43 -04:00
|
|
|
#include "components/ast_types.hpp"
|
|
|
|
|
2023-07-29 05:52:06 -04:00
|
|
|
#include "components/interface.hpp"
|
2023-07-18 23:33:00 -04:00
|
|
|
|
2023-08-03 11:01:43 -04:00
|
|
|
#include "components/inlines.hpp"
|
2023-08-21 23:28:39 -04:00
|
|
|
#include "components/gen/ast_inlines.hpp"
|
2023-08-03 11:01:43 -04:00
|
|
|
#include "components/header_end.hpp"
|
2023-07-24 18:19:37 -04:00
|
|
|
|
2024-12-10 16:13:14 -05:00
|
|
|
#include "auxillary/builder.hpp"
|
|
|
|
#include "auxillary/scanner.hpp"
|
|
|
|
|
2023-08-21 22:48:05 -04:00
|
|
|
GEN_NS_END
|
2023-07-23 22:25:19 -04:00
|
|
|
|
2024-12-05 17:04:17 -05:00
|
|
|
#include "helpers/pop_container_defines.inline.hpp"
|
2023-07-29 05:52:06 -04:00
|
|
|
#include "helpers/pop_ignores.inline.hpp"
|