| 325 | } |
| 326 | |
| 327 | std::string CInput::GetClipboardText() |
| 328 | { |
| 329 | char *pClipboardText = SDL_GetClipboardText(); |
| 330 | std::string ClipboardText = pClipboardText; |
| 331 | SDL_free(pClipboardText); |
| 332 | return ClipboardText; |
| 333 | } |
| 334 | |
| 335 | void CInput::SetClipboardText(const char *pText) |
| 336 | { |
no outgoing calls
no test coverage detected