You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I am an encountering an issue with the following code where the enum enum1 and void func3 show on the page associated with group1, but not on the page associated with namespace Foo.
/** @addtogroup group1 The First Group * @{*/namespaceFoo {
/** @addtogroup group1 The First Group * @{*//** * @brief an enum inside a namespace*/enum enum1 {
A,
B
};
/** * @brief a class inside a namespace*/classclass1 {
public:/** * @brief a func1 inside a class inside a namespace*/voidfunc1();
/** * @brief a func2 inside a class inside namespace*/voidfunc2();
};
/** * @brief a func3 inside a namespace*/voidfunc3(){};
/** @} */
}
/** @} */
After a little preliminary debugging, here is what I have found:
and in Node._check_for_children() there is no check for members inside of a sectiondef.
In file Node.py, around line 233 I would expect to see something like:
formemberinsectiondef.findall("member"):
# handle logic of members with a refid...
I am ready to take a stab at this at submit a PR, but I would like to open this issue first to check with @JakubAndrysek to see if that logic was left out for some good reason.
Thanks in advance for any information you may have for me.
The text was updated successfully, but these errors were encountered:
Hi, I have taken over this part of the project after Doxybook, which might contain some bugs. My main goal was to integrate Doxybook as a MkDocs plugin, and I didn`t modify the core part of the project.
Feel free to fix these core issues, and if you know how to help fix other issues, I will be grateful.
Thanks, Jacob.
Hi! I am an encountering an issue with the following code where the
enum enum1
andvoid func3
show on the page associated with group1, but not on the page associated with namespace Foo.After a little preliminary debugging, here is what I have found:
The xml for the namespace looks like this:
and in
Node._check_for_children()
there is no check formember
s inside of asectiondef
.In file Node.py, around line 233 I would expect to see something like:
I am ready to take a stab at this at submit a PR, but I would like to open this issue first to check with @JakubAndrysek to see if that logic was left out for some good reason.
Thanks in advance for any information you may have for me.
The text was updated successfully, but these errors were encountered: