X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_manager_view.h;h=c1a1744bf69aae6deab0d9b9230f3c5c13f054f5;hb=1266a5149e056a17b4a9276ccf6ea4a79cc93610;hp=2e471532fe1e7399a7e9b0978bbafcfe6e99fa80;hpb=2da4caba7871455c097c0ed940dd6f2332dbda5d;p=dcpomatic.git diff --git a/src/wx/job_manager_view.h b/src/wx/job_manager_view.h index 2e471532f..c1a1744bf 100644 --- a/src/wx/job_manager_view.h +++ b/src/wx/job_manager_view.h @@ -18,20 +18,24 @@ */ + /** @file src/job_manager_view.h * @brief Class which is a wxPanel for showing the progress of jobs. */ -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS + +#include +LIBDCP_DISABLE_WARNINGS #include -DCPOMATIC_ENABLE_WARNINGS -#include +LIBDCP_ENABLE_WARNINGS #include +#include + class Job; class JobView; + /** @class JobManagerView * @brief Class which is a wxPanel for showing the progress of jobs. */ @@ -41,15 +45,15 @@ public: JobManagerView (wxWindow *, bool batch); private: - void job_added (boost::weak_ptr); + void job_added (std::weak_ptr); void periodic (); void replace (); void job_list_changed (); wxPanel* _panel; wxFlexGridSizer* _table; - boost::shared_ptr _timer; + std::shared_ptr _timer; bool _batch; - std::list > _job_records; + std::list> _job_records; };