Add cpp_template_template_parameter

This commit is contained in:
Jonathan Müller 2017-02-01 21:04:53 +01:00
commit edb132981a
7 changed files with 153 additions and 3 deletions

View file

@ -43,6 +43,7 @@ namespace cppast
template_type_parameter_t,
non_type_template_parameter_t,
template_template_parameter_t,
alias_template_t,
@ -54,6 +55,9 @@ namespace cppast
/// \returns Whether or not a given entity kind is a C++ type.
bool is_type(cpp_entity_kind kind) noexcept;
/// \returns Whether or not a given entity kind is a C++ template.
bool is_template(cpp_entity_kind kind) noexcept;
} // namespace cppast
#endif // CPPAST_CPP_ENTITY_KIND_HPP_INCLUDED