047_return.cpp
Go to the documentation of this file.
1 // objective: test the \result, \return, and \returns commands
2 // check: 047__return_8cpp.xml
3 
4 /** \file */
5 
6 /** Test function 1.
7  * \result A integer.
8  */
9 int func1();
10 
11 /** Test function 2.
12  * \return A integer.
13  */
14 int func2();
15 
16 /** Test function 3.
17  * \returns A integer.
18  */
19 int func3();
20 
int func3()
Definition: group.cpp:85
int func1()
Definition: Exception_t.cc:79
int func2()
Definition: group.cpp:82