| 47 | int noDocumentationPlease(); |
| 48 | |
| 49 | class DocMyClass { |
| 50 | private: void somePrivateMember(); |
| 51 | protected: void someProtectedMember(); |
| 52 | public: |
| 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(); |
nothing calls this directly
no outgoing calls
no test coverage detected