Add boost include snippet

Boost headers have a ".hpp" extension and are contained within the boost
directory. This commit adds a "binc" snippet - a dedicated snippet to
include boost headers.
This commit is contained in:
Tomasz Wisniewski 2015-11-09 15:39:38 +00:00
parent d88a8c34b4
commit 4b26cb7df6

View File

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