mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
Ed_
c5afede7b5
Removing the gen. namespace from the files for components, dependencies, and file_processors. They are only necessary if the include directory is transparent, and in my case those are not. Made a docs directory. I'm offloading information from the main readme to there along with additional informationn I end up elaborating on down the line. Enum tables were moved to their own directory (project/enums). Library will not compile for now. Major refactor occuring with parsing related components.
20 lines
515 B
C++
20 lines
515 B
C++
// This file is intended to be included within gen.cpp (There is no pragma diagnostic ignores)
|
|
#include "gen.dep.hpp"
|
|
|
|
#include "dependencies/impl_start.cpp"
|
|
|
|
GEN_NS_BEGIN
|
|
|
|
#include "dependencies/debug.cpp"
|
|
#include "dependencies/string_ops.cpp"
|
|
#include "dependencies/printing.cpp"
|
|
#include "dependencies/memory.cpp"
|
|
#include "dependencies/parsing.cpp"
|
|
#include "dependencies/hashing.cpp"
|
|
#include "dependencies/string.cpp"
|
|
#include "dependencies/timing.cpp"
|
|
|
|
#include "dependencies/file_handling.cpp"
|
|
|
|
GEN_NS_END
|