X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.h;h=dedd0f57a0e3aa41607d67b0f6d16c10c6fa799a;hb=407b96515a5246384847d1835a2d69704e941ea1;hp=6150fadfefa660c287d8f2a850da098489f51893;hpb=338eefb513953ae55e8e3614c009c242ba8ad74e;p=builder.git diff --git a/source/copy.h b/source/copy.h index 6150fad..dedd0f5 100644 --- a/source/copy.h +++ b/source/copy.h @@ -6,10 +6,10 @@ #include "internaltask.h" #include "tool.h" -class Install; +class InstalledFile; /** -Copies a file to another place. Used by the Install target. +Copies a file to another place. Used by the InstalledFile target. */ class Copy: public Tool { @@ -20,10 +20,10 @@ private: class Worker: public InternalTask::Worker { private: - const Install ⌖ + const InstalledFile ⌖ public: - Worker(const Install &); + Worker(const InstalledFile &); private: virtual void main(); }; @@ -31,7 +31,7 @@ private: public: Copy(Builder &); - virtual Target *create_target(const std::list &, const std::string &) const; + virtual Target *create_target(const std::list &, const std::string &); virtual Task *run(const Target &) const; };