| 6 | using namespace xg; |
| 7 | |
| 8 | interaction::InteractionContext::InteractionContext(XChart *chart) { |
| 9 | this->chart_ = chart; |
| 10 | this->chart_->AddMonitor(ACTION_CHART_AFTER_INIT, XG_MEMBER_CALLBACK(interaction::InteractionContext::OnAfterChartInit)); |
| 11 | } |
| 12 | |
| 13 | interaction::InteractionContext::~InteractionContext() { this->chart_ = nullptr; } |
| 14 |
nothing calls this directly
no test coverage detected