Cleanup: rename PKL::asset_list -> assets for consistency.
[libdcp.git] / src / pkl.h
index 8a1d07f941d289820d337b8d47bb88c2d1d65357..daab4b2607c7dbdfacf4ddd9c7559b26c0476ef5 100644 (file)
--- a/src/pkl.h
+++ b/src/pkl.h
@@ -123,12 +123,12 @@ public:
                boost::optional<std::string> _original_filename;
        };
 
-       std::vector<std::shared_ptr<Asset>> asset_list () const {
-               return _asset_list;
+       std::vector<std::shared_ptr<Asset>> assets() const {
+               return _assets;
        }
 
 private:
-       std::vector<std::shared_ptr<Asset>> _asset_list;
+       std::vector<std::shared_ptr<Asset>> _assets;
        /** The most recent disk file used to read or write this PKL */
        mutable boost::optional<boost::filesystem::path> _file;
 };