| 37 | sstream(const string &str) FL_NOEXCEPT : mStr(str) {} |
| 38 | |
| 39 | void setTreatCharAsInt(bool treatCharAsInt) FL_NOEXCEPT { |
| 40 | mTreatCharAsInt = treatCharAsInt; |
| 41 | } |
| 42 | |
| 43 | string str() const FL_NOEXCEPT { return mStr; } |
| 44 | const char *c_str() const FL_NOEXCEPT { return mStr.c_str(); } |
no outgoing calls
no test coverage detected