More licence fixups.
[libdcp.git] / src / reel_stereo_picture_asset.h
1 /*
2     Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /** @file  src/reel_stereo_picture_asset.h
21  *  @brief ReelStereoPictureAsset class.
22  */
23
24 #ifndef LIBDCP_REEL_STEREO_PICTURE_ASSET_H
25 #define LIBDCP_REEL_STEREO_PICTURE_ASSET_H
26
27 #include "reel_picture_asset.h"
28 #include "stereo_picture_asset.h"
29
30 namespace dcp {
31
32 class StereoPictureAsset;
33
34 /** @class ReelStereoPictureAsset
35  *  @brief Part of a Reel's description which refers to a stereoscopic picture asset.
36  */
37 class ReelStereoPictureAsset : public ReelPictureAsset
38 {
39 public:
40         ReelStereoPictureAsset ();
41         ReelStereoPictureAsset (boost::shared_ptr<StereoPictureAsset> content, int64_t entry_point);
42         ReelStereoPictureAsset (boost::shared_ptr<const cxml::Node>);
43
44         /** @return the StereoPictureAsset that this object refers to */
45         boost::shared_ptr<const StereoPictureAsset> stereo_asset () const {
46                 return asset_of_type<const StereoPictureAsset> ();
47         }
48
49         /** @return the StereoPictureAsset that this object refers to */
50         boost::shared_ptr<StereoPictureAsset> stereo_asset () {
51                 return asset_of_type<StereoPictureAsset> ();
52         }
53
54 private:
55         std::string cpl_node_name () const;
56         std::pair<std::string, std::string> cpl_node_attribute (Standard standard) const;
57 };
58
59 }
60
61 #endif