Parse cpp_class_template

This commit is contained in:
Jonathan Müller 2017-03-27 11:34:51 +02:00
commit 22fd582756
12 changed files with 289 additions and 56 deletions

View file

@ -8,11 +8,16 @@
using namespace cppast;
cpp_entity_kind cpp_class_template::do_get_entity_kind() const noexcept
cpp_entity_kind cpp_class_template::kind() noexcept
{
return cpp_entity_kind::class_template_t;
}
cpp_entity_kind cpp_class_template::do_get_entity_kind() const noexcept
{
return kind();
}
cpp_entity_kind cpp_class_template_specialization::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::class_template_specialization_t;