Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
marvel
GitHub Repository: marvel/qnf
Path: blob/master/elisp/emacs-for-python/yasnippet/snippets/c++-mode/class
990 views
#name : class ... { ... }
# --
class ${1:Name}
{
public:
    ${1:$(yas/substr text "[^: ]*")}($2);
    virtual ~${1:$(yas/substr text "[^: ]*")}();
};