X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.cpp;h=45c5a81fa9ba60533a0471b105a2a26c4d25d2c0;hb=451ef4f33b5a57dcb56bd7cb671bed359ac86247;hp=53118de754963dc04095c11be4107a49c0ca9ab2;hpb=8a98d59b2b4954f51eb3f649d3675af976154de6;p=builder.git diff --git a/source/copy.cpp b/source/copy.cpp index 53118de..45c5a81 100644 --- a/source/copy.cpp +++ b/source/copy.cpp @@ -14,11 +14,7 @@ using namespace std; using namespace Msp; -Copy::Copy(Builder &b): - Tool(b, "CP") -{ } - -Target *Copy::create_target(const list &sources, const string &arg) +Target *Copy::create_target(const vector &sources, const string &arg) { FileTarget &file_tgt = dynamic_cast(*sources.front()); InstalledFile *inst = new InstalledFile(builder, *file_tgt.get_package(), file_tgt, arg); @@ -37,10 +33,6 @@ Task *Copy::run(const Target &target) const } -Copy::Worker::Worker(const InstalledFile &t): - target(t) -{ } - void Copy::Worker::main() { const FileTarget &source = target.get_source();