]> git.sesse.net Git - nageru/blobdiff - futatabi/export.h
Log a warning when we kill a client that is not keeping up.
[nageru] / futatabi / export.h
index 934937c72017f8effd11c437a0792a65a2648c78..ae21a7de35f40ee33ef7720de39e548448269341 100644 (file)
@@ -1,9 +1,12 @@
 #ifndef _EXPORT_H
 #define _EXPORT_H 1
 
+#include "clip_list.h"
+
 #include <string>
+#include <vector>
 
 void export_multitrack_clip(const std::string &filename, const Clip &clip);
-void export_interpolated_clip(const std::string &filename, const Clip &clip);
+void export_interpolated_clip(const std::string &filename, const std::vector<Clip> &clips);
 
 #endif