2015-11-18 19:59:03 +00:00
|
|
|
#ifndef LIPSYNC_CENTISECONDS_H
|
|
|
|
#define LIPSYNC_CENTISECONDS_H
|
|
|
|
|
2015-11-25 21:00:24 +00:00
|
|
|
#include <chrono>
|
|
|
|
|
2015-11-18 19:59:03 +00:00
|
|
|
typedef std::chrono::duration<int, std::centi> centiseconds;
|
|
|
|
|
|
|
|
std::ostream& operator <<(std::ostream& stream, const centiseconds cs);
|
|
|
|
|
|
|
|
#endif //LIPSYNC_CENTISECONDS_H
|