File: inline.h

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (17 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdexcept>
/** A class to demonstrate inline documentation syntax. */
class InlineTest
{
 public:
 /** A member function.
  *
  * Details about member function
  *
  *  \exception std::out_of_range parameter is out of range.
  *  @return a character pointer.
  */
 const char *member(char c, ///< c a character.
                    int n)  ///< n an integer.

 throw(std::out_of_range);
};