X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fobject.h;h=303e46d33c2793c77e5ce9833e4a0f8c76d79d3c;hb=d97e1600057d796c4163cecf28f9f04a6ea6402b;hp=1b99e363b2e58da79ad89862c9131496b709ec07;hpb=93096af59d8235235c0caed929b6f72dcf09cdc9;p=libdcp.git diff --git a/src/object.h b/src/object.h index 1b99e363..303e46d3 100644 --- a/src/object.h +++ b/src/object.h @@ -24,14 +24,17 @@ #ifndef LIBDCP_OBJECT_H #define LIBDCP_OBJECT_H +#include #include +class write_subtitle_test; + namespace dcp { /** @class Object * @brief Some part of a DCP that has a UUID. */ -class Object +class Object : public boost::noncopyable { public: Object (); @@ -44,10 +47,12 @@ public: } protected: + friend class ::write_subtitle_test; + /** ID */ std::string _id; }; - + } #endif