diff options
Diffstat (limited to 'paperreplay.cc')
-rw-r--r-- | paperreplay.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/paperreplay.cc b/paperreplay.cc index c7a7f49..9f0a7f6 100644 --- a/paperreplay.cc +++ b/paperreplay.cc @@ -97,7 +97,12 @@ PaperReplay::PenTime PaperReplay::Session::endTime() const return d->end; } -bool PaperReplay::Session::startTimeLess(const Session &a, const Session &b) +PaperReplay::PenTime PaperReplay::Session::duration() const +{ + return d->end - d->start; +} + +bool PaperReplay::Session::compareByStartTime(const Session &a, const Session &b) { return a.d->start < b.d->start; } |