-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
Problem description
Thanks for the module!!
Consider
namespace name {
/**
* @brief My first function.
* @param a This is a parameter.
*/
int foo(int a);
/**
* This is a class
*/
class Bar
{
public:
/**
* @brief Some counter
* @return integer
*/
int count();
};
} // namespace nameWhat is the API to read the doxygen doc of name::foo, name::Bar, or name::Bar::count?
In trying to get the first I already got lost. This is up to where I have gotten:
data = parse_string(txt)
for i in data.namespace.namespaces["name"].functions:
print(i.name)whereby I get stuck as I don't know how to easily match the name.
Reproducible example code
-
Metadata
Metadata
Assignees
Labels
No labels