Parse documentation comments
This commit is contained in:
parent
e787b845d5
commit
183aeaafde
21 changed files with 451 additions and 45 deletions
|
|
@ -8,11 +8,16 @@
|
|||
|
||||
using namespace cppast;
|
||||
|
||||
cpp_entity_kind cpp_file::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_file::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::file_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_file::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
||||
bool detail::cpp_file_ref_predicate::operator()(const cpp_entity& e)
|
||||
{
|
||||
return e.kind() == cpp_entity_kind::file_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue