Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
408 views
in Technique[技术] by (71.8m points)

eclipse - Change getter/setter pattern for C++

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

  1. 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
  2. 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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...