Add cpp_include_directive

This commit is contained in:
Jonathan Müller 2017-02-10 19:47:39 +01:00
commit ad582fa9c9
8 changed files with 75 additions and 1 deletions

View file

@ -12,3 +12,8 @@ cpp_entity_kind cpp_file::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::file_t;
}
bool detail::cpp_file_ref_predicate::operator()(const cpp_entity& e)
{
return e.kind() == cpp_entity_kind::file_t;
}