| 53 | } |
| 54 | |
| 55 | virtual void CopyTo(char* dest, bool nullterminate) const override { |
| 56 | memcpy(dest, _value.data(), _value.size()); |
| 57 | if (nullterminate) { |
| 58 | dest[_value.size()] = 0; |
| 59 | } |
| 60 | } |
| 61 | virtual std::string UrlEncode() const override { |
| 62 | return _value; |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected