diff options
Diffstat (limited to 'src/content.h')
| -rw-r--r-- | src/content.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/content.h b/src/content.h index 57aaa14c..e7445d47 100644 --- a/src/content.h +++ b/src/content.h @@ -53,9 +53,14 @@ class Content : public Asset public: Content (boost::filesystem::path file); Content (Fraction edit_rate); - virtual ~Content () {} + bool equals ( + boost::shared_ptr<const Content> other, + EqualityOptions opt, + boost::function<void (NoteType, std::string)> + ) const; + Fraction edit_rate () const { return _edit_rate; } @@ -64,8 +69,6 @@ public: return _intrinsic_duration; } - virtual bool equals (boost::shared_ptr<const Content> other, EqualityOptions opt, boost::function<void (NoteType, std::string)>) const; - protected: friend class MXFWriter; |
