flatmax@592: flatmax@592: flatmax@592:
flatmax@592: flatmax@592: flatmax@592:![]() |
flatmax@592:
flatmax@592:
flatmax@592:
flatmax@592: CARFAC C++
flatmax@592:
flatmax@592:
flatmax@592: C++ implementation of CARFAC
flatmax@592: |
flatmax@592:
flatmax@592:
flatmax@592:
flatmax@592:
This page explains how to interpret the graphs that are generated by doxygen.
flatmax@592:Consider the following example:
flatmax@592:/*! Invisible class because of truncation */ flatmax@592: class Invisible { }; flatmax@592: flatmax@592: /*! Truncated class, inheritance relation is hidden */ flatmax@592: class Truncated : public Invisible { }; flatmax@592: flatmax@592: /* Class not documented with doxygen comments */ flatmax@592: class Undocumented { }; flatmax@592: flatmax@592: /*! Class that is inherited using public inheritance */ flatmax@592: class PublicBase : public Truncated { }; flatmax@592: flatmax@592: /*! A template class */ flatmax@592: template<class T> class Templ { }; flatmax@592: flatmax@592: /*! Class that is inherited using protected inheritance */ flatmax@592: class ProtectedBase { }; flatmax@592: flatmax@592: /*! Class that is inherited using private inheritance */ flatmax@592: class PrivateBase { }; flatmax@592: flatmax@592: /*! Class that is used by the Inherited class */ flatmax@592: class Used { }; flatmax@592: flatmax@592: /*! Super class that inherits a number of other classes */ flatmax@592: class Inherited : public PublicBase, flatmax@592: protected ProtectedBase, flatmax@592: private PrivateBase, flatmax@592: public Undocumented, flatmax@592: public Templ<int> flatmax@592: { flatmax@592: private: flatmax@592: Used *m_usedClass; flatmax@592: }; flatmax@592:
This will result in the following graph:
flatmax@592:The boxes in the above graph have the following meaning:
flatmax@592:The arrows have the following meaning:
flatmax@592: