diff options
Diffstat (limited to 'src/wx/content_advanced_dialog.h')
| -rw-r--r-- | src/wx/content_advanced_dialog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/content_advanced_dialog.h b/src/wx/content_advanced_dialog.h index 26c1a374a..3c2454449 100644 --- a/src/wx/content_advanced_dialog.h +++ b/src/wx/content_advanced_dialog.h @@ -23,6 +23,7 @@ LIBDCP_DISABLE_WARNINGS #include <wx/wx.h> LIBDCP_ENABLE_WARNINGS +#include <boost/optional.hpp> #include <memory> #include <vector> @@ -38,10 +39,13 @@ public: ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content); bool ignore_video() const; + std::vector<Filter const*> filters() { return _filters_list; } + boost::optional<double> video_frame_rate() const; + private: void edit_filters (); void filters_changed (std::vector<Filter const *> filters); |
