mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
15 lines
299 B
C
15 lines
299 B
C
#ifndef RIPPLE_UPTIMETIMERADAPTER_H
|
|
#define RIPPLE_UPTIMETIMERADAPTER_H
|
|
|
|
/** Adapter providing uptime measurements for template classes.
|
|
*/
|
|
struct UptimeTimerAdapter
|
|
{
|
|
inline static int getElapsedSeconds ()
|
|
{
|
|
return UptimeTimer::getInstance ().getElapsedSeconds ();
|
|
}
|
|
};
|
|
|
|
#endif
|