Add some basic JSON stuff.
[dcpomatic.git] / test / job_test.cc
index 86c6dc9e342d45648ae92793be10f029d9d07eea..4d32b1e0ccf8692497f5be9778b594d2485b98d2 100644 (file)
 
 */
 
+#include <boost/test/unit_test.hpp>
+#include "lib/job.h"
+#include "lib/job_manager.h"
+#include "lib/cross.h"
+
+using std::string;
+using boost::shared_ptr;
+
 class TestJob : public Job
 {
 public:
@@ -46,6 +54,10 @@ public:
        string name () const {
                return "";
        }
+
+       string json_name () const {
+               return "";
+       }
 };
 
 BOOST_AUTO_TEST_CASE (job_manager_test)