1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/// objective: test multi-line alias expansion in different comment styles
/// config: HAVE_DOT = YES
/// config: ALIASES += "long_note{1}=@note @parblock \1 @endparblock"
/// check: 112__aliases_8cpp.xml
/// @file
/// Embedded list
///
/// * item1
/// * item2
///
/// Verbatim section includes slashes
/// \verbatim
/// * item1
/// * item2
/// \endverbatim
///
/// Code section, does not include slashes, but shows comments
/// \code
/// // code comment
/// int foo();
/// \endcode
///
/// Dot graph, does not include slashes
/// \dot
/// // dot comment
/// digraph G {
/// A -> B
/// }
/// \enddot
///
/// @long_note{
/// Some text
/// * item1
/// * item2
///
/// More text
/// }
///
/// @long_note{
/// Alias with embedded verbatim section
/// \verbatim
/// Some text
/// \endverbatim
/// }
void foo1();
/*! Embedded list
*
* * item1
* * item2
*
* Verbatim section includes slashes
* \verbatim
* * item1
* * item2
* \endverbatim
*
* Code section, does not include slashes, but shows comments
* \code
* // code comment
* int foo();
* \endcode
*
* Dot graph, does not include slashes
* \dot
* // dot comment
* digraph G {
* A -> B
* }
* \enddot
*
* @long_note{
* Some text
* * item1
* * item2
*
* More text
* }
*
* @long_note{
* Alias with embedded verbatim section
* \verbatim
* Some text
* \endverbatim
* }
*/
void foo2();
|