Main Page   Reference Manual   Compound List   File List  

Graph Legend

This page explains how to interpret the graphs that are generated by doxygen.

Consider the following example:

/*! Invisible class because of truncation */
classInvisible { };

/*! Truncated class, inheritance relation is hidden */
classTruncated : public Invisible { };

/* Class not documented with doxygen comments */
classUndocumented { };

/*! Class that is inherited using public inheritance */
classPublicBase : public Truncated { };

/*! A template class */
template<class T> classTempl { };

/*! Class that is inherited using protected inheritance */
classProtectedBase { };

/*! Class that is inherited using private inheritance */
classPrivateBase { };

/*! Class that is used by the Inherited class */
classUsed { };

/*! Super class that inherits a number of other classes */
classInherited : public PublicBase,
                  protected ProtectedBase,
                  private PrivateBase,
                  public Undocumented,
                  public Templ<int>
{
  private:
    Used *m_usedClass;
};

This will result in the following graph:

graph_legend.png

The boxes in the above graph have the following meaning:

The arrows have the following meaning:

Copyright © 2002-2008 Carlo Wood.  All rights reserved.