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-24 10:44:19 -07:00
|
|
|
#include "helpers/gen.push_ignores.inline.hpp"
|
2023-07-24 19:19:21 -07:00
|
|
|
#include "components/gen.header_start.hpp"
|
2023-07-23 19:25:19 -07:00
|
|
|
|
2023-07-25 12:12:51 -07:00
|
|
|
#ifdef GEN_DONT_USE_NAMESPACE
|
|
|
|
# define GEN_NS_BEGIN
|
|
|
|
# define GEN_NS_END
|
|
|
|
#else
|
|
|
|
# define GEN_NS_BEGIN namespace gen {
|
|
|
|
# define GEN_NS_END }
|
|
|
|
#endif
|
|
|
|
|
2023-07-23 19:25:19 -07:00
|
|
|
GEN_NS_BEGIN
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
#include "components/gen.types.hpp"
|
2023-07-26 11:21:20 -07:00
|
|
|
#include "components/gen.ecode.hpp"
|
|
|
|
#include "components/gen.eoperator.hpp"
|
|
|
|
#include "components/gen.especifier.hpp"
|
2023-07-24 14:45:27 -07:00
|
|
|
#include "components/gen.data_structures.hpp"
|
|
|
|
#include "components/gen.interface.hpp"
|
|
|
|
#include "components/gen.header_end.hpp"
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-07-24 15:19:37 -07:00
|
|
|
#include "filesystem/gen.builder.hpp"
|
|
|
|
|
2023-07-23 19:25:19 -07:00
|
|
|
GEN_NS_END
|
|
|
|
|
2023-07-24 10:44:19 -07:00
|
|
|
#include "helpers/gen.pop_ignores.inline.hpp"
|