summaryrefslogtreecommitdiffstats
path: root/snippets/fundamental-mode/cppheader
diff options
context:
space:
mode:
Diffstat (limited to 'snippets/fundamental-mode/cppheader')
-rw-r--r--snippets/fundamental-mode/cppheader16
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);
+};