Add Time constructor from ticks; fix Time::to_ticks().
[libdcp.git] / src / stereo_picture_asset.h
index c9019610f3003988da48166c1eec087e38d09dfc..6a96bf029b0cabf347ac1912266d52bf5d9a020b 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef LIBDCP_STEREO_PICTURE_ASSET_H
+#define LIBDCP_STEREO_PICTURE_ASSET_H
+
 #include "picture_asset.h"
 
 namespace libdcp {
@@ -25,7 +28,7 @@ namespace libdcp {
 class StereoPictureAsset : public PictureAsset
 {
 public:
-       StereoPictureAsset (boost::filesystem::path directory, std::string mxf_name);
+       StereoPictureAsset (boost::filesystem::path directory, boost::filesystem::path mxf_name);
 
        void read ();
        
@@ -42,3 +45,5 @@ private:
 };
 
 }
+
+#endif