# indirect implementation dependencies (inheritance, containment, and
# class references variables) of the class with other documented classes.
-COLLABORATION_GRAPH = YES
+COLLABORATION_GRAPH = NO
# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
# will generate a graph for groups, showing the direct groups dependencies
/**
* Base class for all libevent exceptions.
*/
-struct exception: std::exception
+struct exception: public std::exception
{
};
*
* If you hit this exception, you probably got a programming error.
*/
-struct invalid_event: std::invalid_argument, exception
+struct invalid_event: public std::invalid_argument, public exception
{
/**
*
* @see dispatcher::dispatcher(int) to allocate more priority queues.
*/
-struct invalid_priority: std::invalid_argument, exception
+struct invalid_priority: public std::invalid_argument, public exception
{
/**