| 288 | } |
| 289 | |
| 290 | SimpleString::SimpleString(const char *otherBuffer) |
| 291 | : buffer_(NULLPTR), bufferSize_(0) |
| 292 | { |
| 293 | if (otherBuffer == NULLPTR) |
| 294 | setInternalBufferAsEmptyString(); |
| 295 | else |
| 296 | copyBufferToNewInternalBuffer(otherBuffer); |
| 297 | } |
| 298 | |
| 299 | SimpleString::SimpleString(const char *other, size_t repeatCount) |
| 300 | : buffer_(NULLPTR), bufferSize_(0) |