X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_view_dialog.h;h=66a3ea6c658fe302bdaf4518ae207812b83251f1;hb=98a8b5835aca46d8abb6f59513a56648f2c234ba;hp=54a6c1636d0c6951e9fcf4b03f1e75f6216b6ef0;hpb=80f6d818e43d3ce2bd2d81f1bd3bbd4160c28aea;p=dcpomatic.git diff --git a/src/wx/job_view_dialog.h b/src/wx/job_view_dialog.h index 54a6c1636..66a3ea6c6 100644 --- a/src/wx/job_view_dialog.h +++ b/src/wx/job_view_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,23 +18,25 @@ */ + #include "table_dialog.h" -#include -#include +#include + class JobView; class Job; + class JobViewDialog : public TableDialog { public: - JobViewDialog (wxWindow* parent, wxString title, boost::shared_ptr job); + JobViewDialog (wxWindow* parent, wxString title, std::shared_ptr job); ~JobViewDialog (); private: void periodic (); - JobView* _view; - boost::weak_ptr _job; - boost::shared_ptr _timer; + JobView* _view = nullptr; + std::weak_ptr _job; + std::shared_ptr _timer; };