Stub implementation of LV2 persist extension.
[ardour.git] / libs / ardour / ardour / import_status.h
index 25a14f3fae9b9980404b011567931cf98010dea0..9beb70f2f037a9c717bdb63e1329b0747b7f3d69 100644 (file)
@@ -24,7 +24,6 @@
 #include <vector>
 
 #include <stdint.h>
-#include <sigc++/signal.h>
 
 #include "ardour/types.h"
 
@@ -34,12 +33,18 @@ struct ImportStatus : public InterThreadInfo {
        std::string doing_what;
 
        /* control info */
+       uint32_t                   current;
        uint32_t                   total;
        SrcQuality                 quality;
        volatile bool              freeze;
-       std::vector<Glib::ustring> paths;
+       std::vector<std::string>   paths;
        bool                       replace_existing_source;
 
+       /** set to true when all files have been imported, as distinct from the done in ARDOUR::InterThreadInfo,
+        *  which indicates that one run of the import thread has been completed.
+        */
+       bool all_done;
+
        /* result */
        SourceList sources;
 };