1
0
mirror of https://github.com/Ed94/gencpp.git synced 2025-07-12 16:38:59 -07:00

Finished initial implmentation bootstrap generation and singleheader implementation.

This commit is contained in:
2023-07-25 15:12:51 -04:00
parent ebe049d3a0
commit 62b0ed2112
26 changed files with 336 additions and 95 deletions

@ -1,19 +0,0 @@
// This file is intended to be included within gen.cpp (There is no pragma diagnostic ignores)
#include "gen.dep.hpp"
#include "gen.impl_start.cpp"
GEN_NS_BEGIN
#include "gen.debug.cpp"
#include "gen.string_ops.cpp"
#include "gen.printing.cpp"
#include "gen.memory.cpp"
#include "gen.parsing.cpp"
#include "gen.hashing.cpp"
#include "gen.string.cpp"
#include "gen.timing.cpp"
#include "gen.file_handling.cpp"
GEN_NS_END

@ -1,20 +0,0 @@
// This file is intended to be included within gen.hpp (There is no pragma diagnostic ignores)
#pragma once
#include "gen.header_start.hpp"
GEN_NS_BEGIN
#include "gen.macros.hpp"
#include "gen.basic_types.hpp"
#include "gen.debug.hpp"
#include "gen.memory.hpp"
#include "gen.string_ops.hpp"
#include "gen.printing.hpp"
#include "gen.containers.hpp"
#include "gen.string.hpp"
#include "gen.file_handling.hpp"
#include "gen.parsing.hpp"
#include "gen.timing.hpp"
GEN_NS_END

@ -129,11 +129,3 @@
# include <intrin.h>
# endif
#pragma endregion Mandatory Includes
#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

@ -1,7 +1,7 @@
struct FileInfo;
#ifndef GEN_PRINTF_MAXLEN
# define GEN_PRINTF_MAXLEN 65536
# define GEN_PRINTF_MAXLEN kilobytes(128)
#endif
// NOTE: A locally persisting buffer is used internally