Revert "disabled updates as a test"

This reverts commit f8c4ac8c17.
This commit is contained in:
fourtf
2019-10-03 22:18:03 +02:00
parent 245001c2f0
commit c46a65d173
5 changed files with 0 additions and 76 deletions
-22
View File
@@ -1,22 +0,0 @@
#pragma once
#include "debug/Log.hpp"
#include <QElapsedTimer>
#include <boost/noncopyable.hpp>
namespace AB_NAMESPACE {
class BenchmarkGuard : boost::noncopyable
{
public:
BenchmarkGuard(const QString &_name);
~BenchmarkGuard();
qreal getElapsedMs();
private:
QElapsedTimer timer_;
QString name_;
};
} // namespace AB_NAMESPACE