default constructor
| 12 | public: |
| 13 | // default constructor |
| 14 | learncpp() |
| 15 | { |
| 16 | cout << "Default constructor called ! -------------------------" << endl << endl; |
| 17 | }; |
| 18 | |
| 19 | // Parameterized constructor |
| 20 | learncpp(int a, int b, char *ch) |
nothing calls this directly
no outgoing calls
no test coverage detected