Chrono: add methods ToS(), RoundS()

This commit is contained in:
Max Kellermann 2014-08-29 12:22:25 +02:00
parent ad64bab5b2
commit 3ac1475262

View File

@ -58,6 +58,14 @@ public:
return SongTime(ms); return SongTime(ms);
} }
constexpr rep ToS() const {
return count() / rep(1000);
}
constexpr rep RoundS() const {
return (count() + 500) / rep(1000);
}
constexpr rep ToMS() const { constexpr rep ToMS() const {
return count(); return count();
} }
@ -129,6 +137,14 @@ public:
return SignedSongTime(ms); return SignedSongTime(ms);
} }
constexpr rep ToS() const {
return count() / rep(1000);
}
constexpr rep RoundS() const {
return (count() + 500) / rep(1000);
}
constexpr rep ToMS() const { constexpr rep ToMS() const {
return count(); return count();
} }