diff --git a/snippets/c++-mode/doc b/snippets/c++-mode/doc new file mode 100644 index 0000000..1f7a0f1 --- /dev/null +++ b/snippets/c++-mode/doc @@ -0,0 +1,9 @@ +# -*- mode: snippet -*- +# name: doc +# key: doc +# -- +/*! + * @brief $0 + * + * @since $1 + */ \ No newline at end of file diff --git a/snippets/c++-mode/using b/snippets/c++-mode/using new file mode 100644 index 0000000..6f04025 --- /dev/null +++ b/snippets/c++-mode/using @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: using std output streams +# key: using +# -- +using std::cout; +using std::cerr; +using std::endl; +$0 \ No newline at end of file