/*! * @file timer.h * @brief Definition of Time Class. * * These are mainly Classes, that are used for wrapping around SDL_thread */ #ifndef __TIMER_H__ #define __TIMER_H__ //! A class to handle time itself class Timer { public: static double getNow(); }; #endif /* __TIMER_H__ */