Tidy up; more/better use of BOOST_FOREACH.
[libdcp.git] / src / reel_stereo_picture_asset.cc
index a9cdab713267d24d1d7fdfb0a744706afeffee1f..e6e17f63549c82f72056b6f408b70fcb98c02eca 100644 (file)
 
 */
 
+/** @file  src/reel_stereo_picture_asset.cc
+ *  @brief ReelStereoPictureAsset class.
+ */
+
 #include "reel_stereo_picture_asset.h"
+#include "stereo_picture_asset.h"
 #include <libcxml/cxml.h>
 
 using std::string;
@@ -26,6 +31,17 @@ using std::make_pair;
 using boost::shared_ptr;
 using namespace dcp;
 
+ReelStereoPictureAsset::ReelStereoPictureAsset ()
+{
+
+}
+
+ReelStereoPictureAsset::ReelStereoPictureAsset (boost::shared_ptr<StereoPictureAsset> mxf, int64_t entry_point)
+       : ReelPictureAsset (mxf, entry_point)
+{
+
+}
+
 ReelStereoPictureAsset::ReelStereoPictureAsset (boost::shared_ptr<const cxml::Node> node)
        : ReelPictureAsset (node)
 {