mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-11-03 15:26:12 -08:00 
			
		
		
		
	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.
		
			
				
	
	
		
			37 lines
		
	
	
		
			794 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			794 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/push_ignores.inline.hpp"
 | 
						|
#include "components/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/types.hpp"
 | 
						|
#include "components/ecode.hpp"
 | 
						|
#include "components/eoperator.hpp"
 | 
						|
#include "components/especifier.hpp"
 | 
						|
#include "components/data_structures.hpp"
 | 
						|
#include "components/interface.hpp"
 | 
						|
#include "components/header_end.hpp"
 | 
						|
 | 
						|
#include "file_processors/builder.hpp"
 | 
						|
 | 
						|
GEN_NS_END
 | 
						|
 | 
						|
#include "helpers/pop_ignores.inline.hpp"
 |