LAMA
/home/brandes/workspace/LAMA/src/lama/tracing/LAMABaseTracer.hpp
Go to the documentation of this file.
00001 
00033 #ifndef LAMA_LAMABASETRACER_HPP_
00034 #define LAMA_LAMABASETRACER_HPP_
00035 
00036 // for dll_import
00037 #include <lama/config.hpp>
00038 
00042 class LAMA_DLL_IMPORTEXPORT LAMABaseTracer
00043 {
00044 public:
00045     LAMABaseTracer();
00046     virtual ~LAMABaseTracer();
00047 
00048     void setRuntime( const double runTime );
00049 
00050 protected:
00051 
00052     double getRuntime() const;
00053 
00054 private:
00055 
00056     double mRunTime;
00057 };
00058 
00059 #endif // LAMA_LAMABASETRACER_HPP_