@TheNoobie: If you don't know what your talking about, don't post.
I am kind of hoping there is a better/easier way of coding. I have googled for C++ code generators, but I dont know enough about the language, yet, to know if what I found is any good. |
Typically there is no such thing as a code generator for domain independent code.
However, there are quite a few tools that will generate code for a user-interface toolkit (e.g Glade).
There are also quite a few code generation tools that are used for enterprise development. They are usually quite specific to their domain and are not much use for general purpose programming.
The new method of having code generation in the business world is to model your problem using a pseudo language (or a diagram) and have a tool intepret this and generate you an enterprise application backend.
As your a new programmer, I wouldn't recommend you trying to get into this until you've had a few years exposure to development methodologies. For those who are interested, one of the major technologies coming through from alot of the big vendors is BPEL engines. A good one to have a bash around with is the Oracle BPEL Designer (as part of JDeveloper). You build your application as a flow-chart and it'll generate the code and deploy it as a J2EE application.
I am currently using an integration engine called JitterBit. This tool functions very similarly and it's designed for solving problems of integrating systems together and allowing data to move freely between them without having to write code (translators, adapters etc).
Hope this helps :) Good luck with your programming.