X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fspl_entry.h;h=b2977c8aa2d2b7ca6deea67c49ac97ba9825aaaf;hb=01e979c79f7d0aa20fac1bb24c699e0636168294;hp=740082eaf0f9a3d6e0d56bcc222024fe1ec6b8d1;hpb=54af50c3b8e9082f9751e809d63540c51197a4a1;p=dcpomatic.git diff --git a/src/lib/spl_entry.h b/src/lib/spl_entry.h index 740082eaf..b2977c8aa 100644 --- a/src/lib/spl_entry.h +++ b/src/lib/spl_entry.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2018-2020 Carl Hetherington + Copyright (C) 2018-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,12 +18,14 @@ */ + #ifndef DCPOMATIC_SPL_ENTRY_H #define DCPOMATIC_SPL_ENTRY_H + #include #include -#include + namespace xmlpp { class Element; @@ -31,14 +33,15 @@ namespace xmlpp { class Content; + class SPLEntry { public: - SPLEntry (boost::shared_ptr content); + SPLEntry (std::shared_ptr c); void as_xml (xmlpp::Element* e); - boost::shared_ptr content; + std::shared_ptr content; std::string name; /** Digest of this content */ std::string digest; @@ -48,7 +51,8 @@ public: bool encrypted; private: - void construct (boost::shared_ptr content); + void construct (std::shared_ptr content); }; + #endif