Add cpp specific include snippet

The standard inclusion template has been changed from "stdio.h" to
iostream. In case of C++, the user most likely will work with STL
containers/headers which by default don't require the ".h" extension.
This commit is contained in:
Tomasz Wisniewski 2015-11-09 15:35:08 +00:00
parent cfb046a734
commit d88a8c34b4

View File

@ -1,5 +1,11 @@
extends c
##
## Preprocessor
# #include <...>
snippet inc
#include <${1:iostream}>
##
## STL Collections
# std::array
snippet array