mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
Ed_
cf65638979
- Changed the zpl csv parser to only accept hex values with 0x perfix. it was messing with the add term. - Small changes to the clang format config.
37 lines
833 B
C++
37 lines
833 B
C++
/*
|
|
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
|
|
*/
|
|
#pragma once
|
|
|
|
#include "helpers/gen.push_ignores.inline.hpp"
|
|
#include "components/gen.header_start.hpp"
|
|
|
|
#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
|
|
|
|
GEN_NS_BEGIN
|
|
|
|
#include "components/gen.types.hpp"
|
|
#include "components/gen.ecode.hpp"
|
|
#include "components/gen.eoperator.hpp"
|
|
#include "components/gen.especifier.hpp"
|
|
#include "components/gen.data_structures.hpp"
|
|
#include "components/gen.interface.hpp"
|
|
#include "components/gen.header_end.hpp"
|
|
|
|
#include "filesystem/gen.builder.hpp"
|
|
|
|
GEN_NS_END
|
|
|
|
#include "helpers/gen.pop_ignores.inline.hpp"
|