mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 11:04:52 -08:00
21 lines
476 B
C++
21 lines
476 B
C++
// 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
|