Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / wx / job_manager_view.h
index a83b481dc874027f54aeeecee18afe0c168e1df8..79cc4743cef789ae8deb715bd5133272a710fd06 100644 (file)
  *  @brief Class which is a wxPanel for showing the progress of jobs.
  */
 
-#include <string>
-#include <boost/shared_ptr.hpp>
 #include <wx/wx.h>
+#include <boost/shared_ptr.hpp>
+#include <list>
 
 class Job;
-class JobRecord;
+class JobView;
 
 /** @class JobManagerView
  *  @brief Class which is a wxPanel for showing the progress of jobs.
@@ -44,5 +44,5 @@ private:
        wxFlexGridSizer* _table;
        boost::shared_ptr<wxTimer> _timer;
 
-       std::list<boost::shared_ptr<JobRecord> > _job_records;
+       std::list<boost::shared_ptr<JobView> > _job_records;
 };