File: input.h

package info (click to toggle)
taskflow 3.9.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 45,948 kB
  • sloc: cpp: 39,058; xml: 35,572; python: 12,935; javascript: 1,732; makefile: 59; sh: 16
file content (53 lines) | stat: -rw-r--r-- 1,163 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
namespace Namespace {

/** @brief Private base class, should not list any derived */
class PrivateBase {};

}

namespace Another {

/** @brief Protected base, should list a fully-qualified derived, but w/o any label */
class ProtectedBase {};

}

namespace Namespace {

class UndocumentedBase {};

/** @brief Virtual base, should list a derived (omitting the common namespace), but w/o any label */
class VirtualBase {};

/**
@brief A class

Should list one protected base (fully qualified) and one virtual base (omitting
the common namespace), one derived class (fully qualified).
*/
class A: PrivateBase, protected Another::ProtectedBase, public UndocumentedBase, public virtual VirtualBase {};

}

/** @brief Another namespace */
namespace Another {

/** @brief A derived class */
class Derived: public Namespace::A {};

/** @brief A final derived class */
struct Final final: Namespace::A {};

}

namespace Namespace {

struct UndocumentedDerived: A {};

}

/** @brief A base class outside of a namespace */
class BaseOutsideANamespace {};

/** @brief A derived class outside of a namespace */
class DerivedOutsideANamespace: public BaseOutsideANamespace {};