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-18 20:33:00 -07:00
|
|
|
#if ! defined(GEN_DONT_ENFORCE_GEN_TIME_GUARD) && ! defined(GEN_TIME)
|
|
|
|
#error Gen.hpp : GEN_TIME not defined
|
|
|
|
#endif
|
|
|
|
|
2023-07-24 10:44:19 -07:00
|
|
|
#include "helpers/gen.push_ignores.inline.hpp"
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-07-19 20:42:28 -07:00
|
|
|
//! If its desired to roll your own dependencies, define GEN_ROLL_OWN_DEPENDENCIES before including this file.
|
2023-07-16 09:08:57 -07:00
|
|
|
// Dependencies are derived from the c-zpl library: https://github.com/zpl-c/zpl
|
|
|
|
#ifndef GEN_ROLL_OWN_DEPENDENCIES
|
2023-07-24 10:44:19 -07:00
|
|
|
# include "dependencies/gen.dep.hpp"
|
2023-07-11 23:37:51 -07:00
|
|
|
#endif
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-07-23 19:25:19 -07:00
|
|
|
#if defined(GEN_DONT_USE_NAMESPACE) && ! defined(GEN_NS_BEGIN)
|
|
|
|
# define GEN_NS_BEGIN
|
|
|
|
# define GEN_NS_END
|
|
|
|
#elif ! defined(GEN_NS_BEGIN)
|
|
|
|
# define GEN_NS_BEGIN namespace gen {
|
|
|
|
# define GEN_NS_END }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GEN_NS_BEGIN
|
2023-07-18 20:33:00 -07:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
#include "components/gen.types.hpp"
|
|
|
|
#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"
|