C++11 tidying.
[dcpomatic.git] / src / lib / empty.h
1 /*
2     Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_EMPTY_H
23 #define DCPOMATIC_EMPTY_H
24
25
26 #include "playlist.h"
27 #include "dcpomatic_time.h"
28 #include "content_part.h"
29 #include <list>
30
31
32 struct empty_test1;
33 struct empty_test2;
34 struct empty_test3;
35 struct empty_test_with_overlapping_content;
36 struct player_subframe_test;
37
38
39 class Empty
40 {
41 public:
42         Empty () {}
43         Empty (std::shared_ptr<const Film> film, std::shared_ptr<const Playlist> playlist, std::function<bool (std::shared_ptr<const Content>)> part, dcpomatic::DCPTime length);
44
45         dcpomatic::DCPTime position () const {
46                 return _position;
47         }
48
49         dcpomatic::DCPTimePeriod period_at_position () const;
50
51         bool done () const;
52
53         void set_position (dcpomatic::DCPTime amount);
54
55 private:
56         friend struct ::empty_test1;
57         friend struct ::empty_test2;
58         friend struct ::empty_test3;
59         friend struct ::empty_test_with_overlapping_content;
60         friend struct ::player_subframe_test;
61
62         std::list<dcpomatic::DCPTimePeriod> _periods;
63         dcpomatic::DCPTime _position;
64 };
65
66
67 #endif