MCPcopy Create free account
hub / github.com/KDAB/codebrowser / DocMyClass

Class DocMyClass

tests/doc.h:49–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47int noDocumentationPlease();
48
49class DocMyClass {
50private: void somePrivateMember();
51protected: void someProtectedMember();
52public:
53
54
55/**
56 * \fn DocMyClass::somePrivateMember
57 * private member
58 */
59/**
60 * \fn DocMyClass::someProtectedMember
61 * protected member
62 */
63
64 virtual ~DocMyClass();
65 DocMyClass() : Buffer (0) {} ;
66
67 /**
68 * \fn DocMyClass::~DocMyClass
69 * Destructor
70 */
71
72
73 /**
74 * \fn DocMyClass::DocMyClass
75 * Constructor
76 */
77
78
79 int fooOverload();
80 int fooOverload(int);
81
82 int constOverload(int);
83 int constOverload(int) const;
84
85/**
86 * \fn DocMyClass::fooOverload()
87 * A
88 */
89/**
90 * \fn DocMyClass::fooOverload(int)
91 * B
92 */
93/**
94 * \fn DocMyClass::constOverload(int)
95 * C
96 */
97/**
98 * \fn DocMyClass::constOverload(int) const
99 * D
100 */
101
102 DocMyClass *returnPointer() {
103 Capacity = 8;
104 return nullptr;
105 /**
106 * \fn DocMyClass *DocMyClass::returnPointer();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected