| 5 | using namespace xg; |
| 6 | |
| 7 | interaction::Tap::Tap(XChart *chart) : InteractionBase(chart) { |
| 8 | this->chart_->eventController_->AddRetCallback("click", XG_MEMBER_CALLBACK_1(interaction::Tap::onClick)); |
| 9 | } |
| 10 | |
| 11 | interaction::Tap::~Tap() { |
| 12 | this->chart_->eventController_->RemoveRetCallback("click"); |
nothing calls this directly
no test coverage detected