]> git.tdb.fi Git - builder.git/blobdiff - source/lib/chainedtask.h
Add visibility decorations to the library and plugins
[builder.git] / source / lib / chainedtask.h
index 30a3b3e020020197608b0f05c02223c58db907a9..4363ffa1cab742d2807c2536839c2803fcf59c64 100644 (file)
@@ -2,13 +2,14 @@
 #define CHAINEDTASK_H_
 
 #include <vector>
+#include "libbuilder_api.h"
 #include "task.h"
 
 /**
 Runs multiple tasks as one unit, one after the other.  Execution of the chain
 will stop if any of the component tasks terminates with an error.
 */
-class ChainedTask: public Task
+class LIBBUILDER_API ChainedTask: public Task
 {
 private:
        std::vector<Task *> tasks;