vscode-cmantic
vscode-cmantic copied to clipboard
Getter/setter customization
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