[EMAIL PROTECTED] wrote: > I am planning to write a source to source (C++ to C++) translator. The > translator's job is to parse the C++ program augemented with some > annotations (not part of C++ standard) and produce a standard C++ code. > The annotations are written in the form of comments (/* ...*/).
Can you give an example? > Will g++ be ideal for this project? How long does it take to master g++? > Duration of the project is 1 month. If you want to do text conversions only, g++ (which is a C++ compiler) can be used to create programs that do this. In fact pretty much every programming language should be able to. What is your question? Uli -- http://gcc.gnu.org/faq.html http://parashift.com/c++-faq-lite/ _______________________________________________ Help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
