#ifndef BANDIT_REPORTERS_H #define BANDIT_REPORTERS_H #include #include #include #include #include #include #include #include namespace bandit { namespace detail { inline listener& registered_listener(listener* reporter = NULL) { static struct listener* reporter_; if(reporter) { reporter_ = reporter; } return *reporter_; } }} #endif