| 6 | namespace advss { |
| 7 | |
| 8 | std::pair<int, int> GetCursorPos() |
| 9 | { |
| 10 | auto cursorPos = QCursor::pos(); |
| 11 | return {cursorPos.x(), cursorPos.y()}; |
| 12 | } |
| 13 | |
| 14 | bool ReplaceAll(std::string &str, const std::string &from, |
| 15 | const std::string &to) |
no outgoing calls
no test coverage detected