Fix up some problems with being included.
[libdcp.git] / src / pkl.h
index ab6c7a60dff386c865103e1fd3571535dc908f49..56cda9664f01fc5d4f086713f765a29de08ca5d3 100644 (file)
--- a/src/pkl.h
+++ b/src/pkl.h
@@ -12,19 +12,10 @@ public:
        std::string id;
        std::string annotation_text;
        std::string hash;
-       int size;
+       int64_t size;
        std::string type;
 };
 
-class PKLAssetList : public XMLNode
-{
-public:
-       PKLAssetList ();
-       PKLAssetList (xmlpp::Node const * node);
-
-       std::list<boost::shared_ptr<PKLAsset> > assets;
-};
-
 class PKL : public XMLFile
 {
 public:
@@ -35,7 +26,7 @@ public:
        std::string issue_date;
        std::string issuer;
        std::string creator;
-       boost::shared_ptr<PKLAssetList> asset_list;
+       std::list<boost::shared_ptr<PKLAsset> > assets;
 };
        
 }