Skip to content
Snippets Groups Projects
TimeMeasurementBase.h 600 B
Newer Older
  • Learn to ignore specific revisions
  • Lars Bilke's avatar
    Lars Bilke committed
     * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.org)
    
     *            Distributed under a Modified BSD License.
     *              See accompanying file LICENSE.txt or
     *              http://www.opengeosys.com/LICENSE.txt
     *
     *
     * \file TimeMeasurementBase.h
     *
     * Created on xxxx-xx-xx by Thomas Fischer
     */
    
    
    #ifndef TIMEMEASUREMENT_H
    #define TIMEMEASUREMENT_H
    
    
    namespace BaseLib {
    
    class TimeMeasurementBase
    
    {
    public:
    	virtual void start () = 0;
    	virtual void stop () = 0;
    	virtual double elapsed () = 0;
    	virtual ~TimeMeasurementBase () {};
    };
    
    
    } // end namespace BaseLib