As the title says Doxygen doesn't seem to notice my closing "}" of the group.
This is what my Python file looks like:

##
#   @defgroup api_ironpy IronPython
#   @brief IronPython API
#
#   @defgroup api_ironpy_foo Foo
#   @ingroup api_ironpy
#   @{
#

My Foo class definition goes here...

##
#   @}
#

Even if I remove my class definition and just create the group I get the
same warning, so my class is not interfering. Any idea what is causing this
and how it can be fixed? I am using the default settings created by
Doxywizard and this is the only source file in my Doxygen project.

I have used the same procedure when creating groups in another project
(C++/C# instead of Python) without problems, in those files it looks like
this:

///
/// @defgroup api_c_cpp C/C++
/// @brief C/C++ API
///
/// @defgroup api_c_cpp_bar Bar
/// @ingroup api_c_cpp
/// @{
///

Code goes here...

///
/// @}
///

I would appreciate any help.



--
View this message in context: 
http://doxygen.10944.n7.nabble.com/Warning-End-of-file-while-inside-a-group-tp7193.html
Sent from the Doxygen - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to