tree-gen
C++ code generator for tree structures
tree-gen-cpp.hpp
Go to the documentation of this file.
1 
5 #ifndef _TREE_GEN_CPP_HPP_INCLUDED_
6 #define _TREE_GEN_CPP_HPP_INCLUDED_
7 
8 #include "tree-gen.hpp"
9 
10 namespace tree_gen {
11 
15 namespace cpp {
16 
20 void generate(
21  const std::string &header_filename,
22  const std::string &source_filename,
23  Specification &specification
24 );
25 
26 } // namespace cpp
27 } // namespace tree_gen
28 
29 #endif
Namespace for the tree-gen program.
void generate(const std::string &header_filename, const std::string &source_filename, Specification &specification)
Generate the complete C++ code (source and header).
Header file for tree-gen.