code_generator icon indicating copy to clipboard operation
code_generator copied to clipboard

Simple and straightforward code generator for creating program code. At the moment offers support for C++, Java and HTML5 for generating reports.

Results 10 code_generator issues
Sort by recently updated
recently updated
newest added

//.cpp #include "header.h"

//.h namespace web{ class CExample { CExample(); } } //.cpp web::CExample:CExample(){ }

//.cpp Child::Child(Engine &engine) : Parent(engine) { }

Here I propose a method to introduce also public variable into classes

Add feature to write `using` keyword to define types as ```C++ using FooType = double; ```

After I was asked to write a test after a small PR, I realized how difficult is to create a unit test for a code generator library. I would like...

I'm trying to generate a struct with out a parent and is getting the following result. the ": public" should not be there. Besides it looks a little strange with...