Mi proyecto Doxygen de prueba  v1.0
ejemplo_doxygen.h
Ir a la documentación de este archivo.
1 
28 #ifndef EJEMPLO_H_INCLUDED
29 #define EJEMPLO_H_INCLUDED
30 
31 
32 /**********************************************************
33 * Constantes compartidas entre varios modulos
34 **********************************************************/
35 
36 #define C1 1 // La primer constante
37 #define LBUF 80 // Largo buffer de algo
38 
39 
40 /**********************************************************
41 * Nuevos tipos definidos que son parte de la interface
42 * del modulo
43 **********************************************************/
44 
45 //---------------------------------------------------------
47 typedef MiTipo int;
48 
49 //---------------------------------------------------------
53 typedef int (*ShellFunPtr)(unsigned int argc, char** argv);
54 
57 
58 /**********************************************************
59 * Funciones del modulo
60 * Cada funcion debe tener comentarios indicando que hace
61 * y cual es su interface
62 **********************************************************/
70 int sumar(int a, int b);
71 
72 
73 
74 #endif // EJEMPLO_H_INCLUDED
MiTipo int
bool intEnabled
int(* ShellFunPtr)(unsigned int argc, char **argv)
int sumar(int a, int b)