views:

252

answers:

1

Is there a way (either via the UI, or in config files) to change the names of the C++ getters/setters generated by Eclipse CDT from the Java-style getSomething() to the more C++ like something() ?

A: 

Unfortunately there's absolutely no way to do that currently, as get and set prefixes are hard-coded in Generate Getters/Setters wizard code.

Aleksei Potov