rhubarb-lip-sync/src/TimeSegment.h

14 lines
260 B
C
Raw Normal View History

2016-03-15 21:52:31 +00:00
#pragma once
#include "centiseconds.h"
class TimeSegment {
public:
TimeSegment(centiseconds start, centiseconds end);
centiseconds getStart() const;
centiseconds getEnd() const;
centiseconds getLength() const;
private:
const centiseconds start, end;
};