| 9 | char * characters; |
| 10 | public: |
| 11 | MyString(int buf_len = 64, const char * data = NULL) |
| 12 | { |
| 13 | std::cout << "Constructor(int, char*)" << std::endl; |
| 14 | this->buf_len = 0; |
| 15 | this->characters = NULL; |
| 16 | create(buf_len, data); |
| 17 | } |
| 18 | MyString(const MyString & ms) |
| 19 | { |
| 20 | std::cout << "Constructor(MyString&)" << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected