1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include "scopemeasure.h" namespace newsboat { ScopeMeasure::ScopeMeasure(const std::string& func) : rs_object(scopemeasure::bridged::create(func)) { } void ScopeMeasure::stopover(const std::string& son) { scopemeasure::bridged::stopover(*rs_object, son); } } // namespace newsboat