Newer
Older
* \file
* \author Thomas Fischer
* \date 2012-05-10
* \brief Definition of the RunTime class.
*
* \copyright
* Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
Tom Fischer
committed
*/
#ifndef RUNTIME_H
#define RUNTIME_H
#include "TimeMeasurementBase.h"
#else
#include <windows.h>
#endif
Tom Fischer
committed
namespace BaseLib {
class RunTime : public TimeMeasurementBase
virtual void start();
virtual void stop();
virtual double elapsed();
Tom Fischer
committed
~RunTime() {};
#else
unsigned long _start;
unsigned long _stop;
#endif
Tom Fischer
committed
} // end namespace BaseLib