No-op: whitespace.
[libdcp.git] / src / reel.h
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef LIBDCP_REEL_H
21 #define LIBDCP_REEL_H
22
23 #include "key.h"
24 #include "types.h"
25 #include "ref.h"
26 #include <libxml++/libxml++.h>
27 #include <boost/shared_ptr.hpp>
28 #include <boost/function.hpp>
29 #include <list>
30
31 namespace cxml {
32         class Node;
33 }
34
35 namespace dcp {
36
37 class DecryptedKDM;
38 class ReelAsset;
39 class ReelPictureAsset;
40 class ReelSoundAsset;
41 class ReelSubtitleAsset;
42 class Content;
43
44 /** @brief A reel within a DCP; the part which actually refers to picture, sound and subtitle data */
45 class Reel : public Object
46 {
47 public:
48         Reel () {}
49
50         Reel (
51                 boost::shared_ptr<ReelPictureAsset> picture,
52                 boost::shared_ptr<ReelSoundAsset> sound,
53                 boost::shared_ptr<ReelSubtitleAsset> subtitle
54                 )
55                 : _main_picture (picture)
56                 , _main_sound (sound)
57                 , _main_subtitle (subtitle)
58         {}
59
60         Reel (boost::shared_ptr<const cxml::Node>);
61
62         boost::shared_ptr<ReelPictureAsset> main_picture () const {
63                 return _main_picture;
64         }
65
66         boost::shared_ptr<ReelSoundAsset> main_sound () const {
67                 return _main_sound;
68         }
69
70         boost::shared_ptr<ReelSubtitleAsset> main_subtitle () const {
71                 return _main_subtitle;
72         }
73
74         void add (boost::shared_ptr<ReelAsset> asset);
75
76         void write_to_cpl (xmlpp::Element* node, Standard standard) const;
77
78         bool encrypted () const;
79
80         bool equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHandler notes) const;
81
82         void add (DecryptedKDM const &);
83
84         void resolve_refs (std::list<boost::shared_ptr<Object> >);
85
86 private:
87         boost::shared_ptr<ReelPictureAsset> _main_picture;
88         boost::shared_ptr<ReelSoundAsset> _main_sound;
89         boost::shared_ptr<ReelSubtitleAsset> _main_subtitle;
90 };
91
92 }
93
94 #endif