Parse cpp_class_template
This commit is contained in:
parent
bf7c85a9dd
commit
22fd582756
12 changed files with 289 additions and 56 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue