| 13 | } |
| 14 | |
| 15 | const std::string interaction::Tap::onClick(event::Event &event) { |
| 16 | util::Point point = event.points[0]; |
| 17 | const std::string ret = this->handleClick(point); |
| 18 | return ret; |
| 19 | } |
| 20 | |
| 21 | const std::string interaction::Tap::handleClick(const util::Point &point) { |
| 22 | util::Point _point = point; |
nothing calls this directly
no test coverage detected