Im using Eclipse for C++ and the generation of getters/setters is really bad. For example a generated setter would look like this
void setMyString(const std::string& myString)
{
_myString = myString;
}
There are 2 complains I have with this
- The opening bracket is in the wrong line. Using autoformat does not change that. I prefer to have it Java style in the line before
- I also prefer getting the param by copy and then use std::move() to move the variable
I looked around in Eclipse but couldnt not find was Im searching for. The only thing I found was a seting to change only the function body while the signature would stay the same (which doesnt help me since moving a const& is pointless).
Is there any way to change the whole function pattern? I'd have no problem digging into some files by hand but I need to know where I have to look.
Thank you
question from:
https://stackoverflow.com/questions/65923439/change-getter-setter-pattern-for-c 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…