blob: c85daa25055d93abaf3c38187136ad6e180f7c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// objective: test \ref command with function variadic arguments '...'
// check: 068__ref__varargs_8cpp.xml
/** \file
* See \ref func(int,...) "the function" for more info.
* See the \ref Test "test" class.
*/
/** A function
*/
void func(int p);
/** Overloaded function taking variadic arguments
*/
void func(int p, ...);
/** A test */
class Test
{
};
|