mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
410 B
C++
22 lines
410 B
C++
#include "Benchmark.hpp"
|
|
|
|
namespace AB_NAMESPACE {
|
|
|
|
BenchmarkGuard::BenchmarkGuard(const QString &_name)
|
|
: name_(_name)
|
|
{
|
|
timer_.start();
|
|
}
|
|
|
|
BenchmarkGuard::~BenchmarkGuard()
|
|
{
|
|
log("{} {} ms", this->name_, float(timer_.nsecsElapsed()) / 1000000.0f);
|
|
}
|
|
|
|
qreal BenchmarkGuard::getElapsedMs()
|
|
{
|
|
return qreal(timer_.nsecsElapsed()) / 1000000.0;
|
|
}
|
|
|
|
} // namespace AB_NAMESPACE
|