]> git.tdb.fi Git - builder.git/blobdiff - source/copy.h
Migrate from msppath to mspfs
[builder.git] / source / copy.h
index deb60209b7cbc4b3ab4aa551fe60c2d2318355ce..445de7bb9841433d573f60ca5c02794667de75de 100644 (file)
@@ -9,7 +9,7 @@ Distributed under the LGPL
 #define COPY_H_
 
 #include <msp/core/thread.h>
-#include <msp/path/path.h>
+#include <msp/fs/path.h>
 #include "internalaction.h"
 
 class Package;
@@ -20,7 +20,7 @@ Copies a file to another place.  Used by the Install target.
 class Copy: public InternalAction
 {
 public:
-       Copy(Builder &, const Package &, const Msp::Path &, const Msp::Path &);
+       Copy(Builder &, const Package &, const Msp::FS::Path &, const Msp::FS::Path &);
 private:
        /**
        A worker thread that actually does the data transfer.
@@ -35,8 +35,8 @@ private:
                void main();
        };
 
-       Msp::Path src;
-       Msp::Path dest;
+       Msp::FS::Path src;
+       Msp::FS::Path dest;
 };
 
 #endif