diff options
author | salad <fmoenne-@student.le-101.fr> | 2021-02-10 16:50:08 +0100 |
---|---|---|
committer | salad <fmoenne-@student.le-101.fr> | 2021-02-10 16:50:08 +0100 |
commit | e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4 (patch) | |
tree | b54b315a71eca371b95d47ee7d2a40ba35eb0c15 /snippets/fundamental-mode/cppheader | |
parent | addautols (diff) | |
download | dotfiles-e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4.tar.gz dotfiles-e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4.tar.bz2 dotfiles-e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4.tar.xz dotfiles-e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4.tar.zst dotfiles-e350f0f3e08d9bc89e9318c68bbff37eb1b3f3f4.zip |
add snippets
Diffstat (limited to 'snippets/fundamental-mode/cppheader')
-rw-r--r-- | snippets/fundamental-mode/cppheader | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/snippets/fundamental-mode/cppheader b/snippets/fundamental-mode/cppheader new file mode 100644 index 0000000..b9eac41 --- /dev/null +++ b/snippets/fundamental-mode/cppheader @@ -0,0 +1,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); +}; |