| 18 | { |
| 19 | public: |
| 20 | InplaceStr(){ begin = NULL; end = NULL; } |
| 21 | // It is possible to construct it from \0-terminated string |
| 22 | explicit InplaceStr(const char *strBegin){ begin = strBegin; end = begin + strlen(begin); } |
| 23 | // And from non-terminating strings |
nothing calls this directly
no outgoing calls
no test coverage detected