Eclipse CDT Generates Recipient / Setter Name

Is there a way (either through the user interface or in the configuration files) to change the C ++ recipient / setter names generated by the Eclipse CDT from the Java style getSomething()to more C ++, for example something()?

+3
source share
2 answers

Now it is possible through the following menu:

enter image description here

+3
source

Unfortunately, at the moment there is absolutely no way to do this, since get and set prefixes are hardcoded in the Getters / Setters code generation.

+1
source

Source: https://habr.com/ru/post/1717571/


All Articles