Merge pull request #641 from dagon666/cpp_include

Cpp include snippets
This commit is contained in:
Louis Pilfold 2015-11-09 23:01:32 +00:00
commit 413b3507fb

View File

@ -1,5 +1,13 @@
extends c
##
## Preprocessor
# #include <...>
snippet inc
#include <${1:iostream}>
snippet binc
#include <boost/${1:shared_ptr}.hpp>
##
## STL Collections
# std::array
snippet array