Add full_name() function

This commit is contained in:
Jonathan Müller 2017-01-21 22:59:38 +01:00
commit 0b88656cc2
5 changed files with 51 additions and 0 deletions

View file

@ -61,6 +61,12 @@ namespace cppast
cpp_entity_type do_get_entity_type() const noexcept override;
/// \returns The name of the namespace.
type_safe::optional<std::string> do_get_scope_name() const override
{
return name();
}
bool inline_;
};