19#ifndef OPM_TIMERLOG_HPP
20#define OPM_TIMERLOG_HPP
28#include <opm/common/OpmLog/StreamLog.hpp>
37class TimerLog :
public StreamLog {
39 static const int64_t StartTimer = 4096;
40 static const int64_t StopTimer = 8192;
42 explicit TimerLog(
const std::string& logFile);
43 explicit TimerLog(std::ostream& os);
49 const std::string& message)
override;
54typedef std::shared_ptr<TimerLog> TimerLogPtr;
55typedef std::shared_ptr<const TimerLog> TimerLogConstPtr;
void addMessageUnconditionally(int64_t messageFlag, const std::string &message) override
This is the method subclasses should override.
Definition TimerLog.cpp:47
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30