Rainer Schuetze: > http://www.dsource.org/projects/visuald/wiki/Tour/CppConversion > There is also a command line version available for those not working > with Visual Studio.
It seems a nice tool.
If I try it on this C++ code:
enum Foos { A, B };
char *Colors[] = {"red", "blue", "green"};
int main() {
return 0;
}
It outputs:
module test;
enum Foos { A, B };
char *Colors[] = {"red", "blue", "green"};
int main() {
return 0;
}
Bye,
bearophile
