Skip to content

Instantly share code, notes, and snippets.

@kube
Created January 7, 2016 16:40
Show Gist options
  • Save kube/fe69eb8540b8ef9688c3 to your computer and use it in GitHub Desktop.
Save kube/fe69eb8540b8ef9688c3 to your computer and use it in GitHub Desktop.
<snippet>
<content><![CDATA[
#include "${1}.hpp"
${1}::${1}()
{
}
${1}::${1}(const ${1}& rhs)
{
}
${1}&
${1}::operator=(const ${1}& rhs)
{
return *this;
}
${1}::~${1}()
{
}
]]></content>
<tabTrigger>canonicalClassImplementation</tabTrigger>
<scope>source.c++</scope>
<description>Canonical Class Implementation</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment