| 68 | fc::string& string::replace(size_t pos, size_t len, const char* s) { my->replace(pos, len, s); return *this; } |
| 69 | |
| 70 | void string::clear() { my->clear(); } |
| 71 | void string::resize( size_t s ) { my->resize(s); } |
| 72 | |
| 73 | fc::string string::substr( size_t start, size_t len )const { return my->substr(start,len); } |
no outgoing calls