aboutsummaryrefslogtreecommitdiff
path: root/src/scopemeasure.cpp
blob: 56a1bc6ed1fa2baec5c81924cc09ffe735a7f17a (plain) (blame)
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