File: 112_aliases.cpp

package info (click to toggle)
doxygen 1.15.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 25,384 kB
  • sloc: cpp: 223,248; lex: 45,536; python: 32,394; ansic: 26,761; xml: 16,962; javascript: 8,627; yacc: 582; f90: 455; php: 427; perl: 384; makefile: 201; sh: 24; objc: 14; cs: 5; java: 1
file content (88 lines) | stat: -rw-r--r-- 1,726 bytes parent folder | download
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();