vscode-cmantic icon indicating copy to clipboard operation
vscode-cmantic copied to clipboard

Getter/setter customization

Open zhyh2010 opened this issue 1 year ago • 1 comments

I found https://github.com/BigBahss/vscode-cmantic/issues/11, but it does not work for me. my code is like this: class WatchData { public: std::string GetSubscribeName() const { return SubscribeName; } void SetSubscribeName(const std::string &subscribeName) { mSubscribeName = subscribeName; }

private: std::string mSubscribeName; };

however, when use the plugin, i cannot generate code above. Is there any way to generate code for customization

zhyh2010 avatar Jul 25 '23 10:07 zhyh2010