Added snippets using and doc.

This commit is contained in:
tastytea 2019-08-07 17:05:17 +02:00
parent 3057f85f4c
commit 491ab4bddb
2 changed files with 17 additions and 0 deletions

9
snippets/c++-mode/doc Normal file
View File

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: doc
# key: doc
# --
/*!
* @brief $0
*
* @since $1
*/

8
snippets/c++-mode/using Normal file
View File

@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: using std output streams
# key: using
# --
using std::cout;
using std::cerr;
using std::endl;
$0