Use libdcp's warnings.h
[dcpomatic.git] / src / wx / playhead_to_timecode_dialog.h
index adce874342879a7c01c42a22dfe2c6173aa24025..fedca008f3afbf789765d60b44efe4f711b42005 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2020 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "table_dialog.h"
 #include "timecode.h"
 
+
 class PlayheadToTimecodeDialog : public TableDialog
 {
 public:
-       PlayheadToTimecodeDialog (wxWindow* parent, int fps);
+       PlayheadToTimecodeDialog (wxWindow* parent, dcpomatic::DCPTime time, int fps);
 
-       DCPTime get () const;
+       dcpomatic::DCPTime get () const;
 
 private:
-       Timecode<DCPTime>* _timecode;
+       Timecode<dcpomatic::DCPTime>* _timecode;
        int _fps;
 };