Newer
Older
* Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.net/LICENSE.txt
*
*
Tom Fischer
committed
*
Tom Fischer
committed
*/
#ifndef RUNTIME_H
#define RUNTIME_H
#include "TimeMeasurementBase.h"
#ifndef _WIN32
#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