gencpp/project/gen.hpp

33 lines
725 B
C++
Raw Normal View History

/*
gencpp: An attempt at "simple" staged metaprogramming for c/c++.
See Readme.md for more information from the project repository.
Public Address:
https://github.com/Ed94/gencpp
*/
2023-04-01 19:21:46 -07:00
#pragma once
#include "helpers/push_ignores.inline.hpp"
#include "components/header_start.hpp"
2023-08-21 19:48:05 -07:00
GEN_NS_BEGIN
#include "components/types.hpp"
#include "components/temp/ecode.hpp"
#include "components/temp/eoperator.hpp"
#include "components/temp/especifier.hpp"
#include "components/ast.hpp"
#include "components/ast_types.hpp"
#include "components/interface.hpp"
#include "components/inlines.hpp"
#include "components/temp/ast_inlines.hpp"
#include "components/header_end.hpp"
2023-07-24 15:19:37 -07:00
2023-08-21 19:48:05 -07:00
GEN_NS_END
#include "helpers/pop_ignores.inline.hpp"