rhubarb-lip-sync/src/centiseconds.h

9 lines
186 B
C
Raw Normal View History

#pragma once
2015-11-25 21:00:24 +00:00
#include <chrono>
2016-04-12 21:04:16 +00:00
#include <ostream>
2015-11-25 21:00:24 +00:00
typedef std::chrono::duration<int, std::centi> centiseconds;
std::ostream& operator <<(std::ostream& stream, const centiseconds cs);