Doxygen ne documente pas la fonction principale dans main.cpp

J'ai un main.cpp qui contient une struct, certaines constantes globales et d'une fonction principale.

J'ai couru doxygen et la seule documentation que je suis arriver dans la sortie index.html pour ma struct.

Je veux doxygen du document dans index.html fichier mon main (). Ce que je fais mal?

    ///Definition of Pi
    const auto Pi = 3.141592653589793238462643383279502884197169399;

    ///\struct myStruc
    ///\brief myStruc description
    ///
    struct myStruc
    {
         ///Comments inside myStruc
    };

    ///\file

    ///\brief  Main function
    ///\param  argc An integer argument count of the command line arguments
    ///\param  argv An argument vector of the command line arguments
    ///\return an integer 0 upon exit success
    int main(int argc, char** argv)
    {
        ///Comments I would like to be documented in as well
        return 0;
    }

source d'informationauteur user1496542