Doxygen Problem
-
Hi,
ich habe folgendes Problem:
Doxygen Dokumentiert immer nur ein Teil meiner Funktionen wodran kann so was liegen?
Hier ein Minimalbeispiel:/** * \fn double ENERGY_FROM_HEIGHT(double x) * * \brief Calculate the potential Energy from the UCN. * * \author Unknown * \date 13.05.2009 * * \param x Height in m * * \retval - double Potential Energy in neV. */ /** * \fn double dbl_signum(double x) * * \brief Calculate the signum of a double Value. * * \author BD * \date 28.07.2009 * * \param x The x coordinate. * * \retval The signum of Value x. */
Ausgabe:
double ENERGY_FROM_HEIGHT (double x) Calculate the potential Energy from the UCN. double dbl_signum (double x)
Bei ENERGY_FROM_HEIGHT funktioniert alles ohne Probleme, bei dbl_signum klappt es nicht wodran liegt es?
Danke