summaryrefslogtreecommitdiffstats
path: root/snippets/fundamental-mode/cppheader
blob: b9eac41f40c932965e4b5fb7da837820439674ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: snippet -*-
# name: cppheader
# key: cppheader
# --

\#include <iostream>

class Name {
      public :
        Name();
        Name(std::string name);
        Name(Name const & name);
        ~Name();

        Name & operator=(Name const & rhs);
};