X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.h;h=445de7bb9841433d573f60ca5c02794667de75de;hb=a2adbd9c0a8d7a7567848c4c6bdbf0de6ba32bb1;hp=deb60209b7cbc4b3ab4aa551fe60c2d2318355ce;hpb=7567502e17be7704d58ced2f49703fcf71c7ef38;p=builder.git diff --git a/source/copy.h b/source/copy.h index deb6020..445de7b 100644 --- a/source/copy.h +++ b/source/copy.h @@ -9,7 +9,7 @@ Distributed under the LGPL #define COPY_H_ #include -#include +#include #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