Add set_font_file()
[libdcp.git] / src / atmos_asset.h
index 8e9190c88cef37572c21c659de9d286b74faa043..f7794a2a2614b1c8d54102b57015c238d7faeb06 100644 (file)
@@ -45,13 +45,16 @@ class AtmosAssetWriter;
 class AtmosAsset : public Asset, public MXF
 {
 public:
-       AtmosAsset (Fraction edit_rate, int first_frame, int max_channel_count, int max_object_count, std::string atmos_id, int atmos_version);
+       AtmosAsset (Fraction edit_rate, int first_frame, int max_channel_count, int max_object_count, int atmos_version);
        explicit AtmosAsset (boost::filesystem::path file);
 
        boost::shared_ptr<AtmosAssetWriter> start_write (boost::filesystem::path file);
        boost::shared_ptr<AtmosAssetReader> start_read () const;
 
-       std::string pkl_type (Standard) const;
+       static std::string static_pkl_type (Standard);
+       std::string pkl_type (Standard s) const {
+               return static_pkl_type (s);
+       }
 
        Fraction edit_rate () const {
                return _edit_rate;