File: cpp_function.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-- 369 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct Foo{};
struct Class {
	virtual void f1() const volatile & = 0;
	virtual void f2() const volatile && = 0;
	static void f3();


	void (*f_issue_489)(struct Foo *foo, int value);

	int f_issue_338() noexcept;
};

/** A namespace to demonstrate a namespaced function */
namespace TestNamespaceFunction {
/** A function within a namespace. */
void namespaceFunc();
}