LanguageTag strings should not care about case.
[libdcp.git] / src / picture_asset_writer.h
index f26ff2a0c14a45867d3dd33ae50af50f6ca5f712..12530513bc12d90e73279ea224b2c4294f9e6730 100644 (file)
@@ -41,7 +41,7 @@
 #include "metadata.h"
 #include "types.h"
 #include "asset_writer.h"
-#include <boost/shared_ptr.hpp>
+#include <memory>
 #include <boost/utility.hpp>
 #include <stdint.h>
 #include <string>
@@ -82,12 +82,11 @@ public:
 
 protected:
        template <class P, class Q>
-       friend void start (PictureAssetWriter *, boost::shared_ptr<P>, Standard, Q *, uint8_t const *, int);
+       friend void start (PictureAssetWriter *, std::shared_ptr<P>, Q *, uint8_t const *, int);
 
-       PictureAssetWriter (PictureAsset *, boost::filesystem::path, Standard standard, bool);
+       PictureAssetWriter (PictureAsset *, boost::filesystem::path, bool);
 
        PictureAsset* _picture_asset;
-       Standard _standard;
        bool _overwrite;
 };