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