X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.h;h=283ef48c5bbfa444b3f52a115562b041d1ca3cb3;hb=291455f435a4319ce3460e2e47d8f036222a3f92;hp=a6d5c51673e8fa6593bd8fddb0a0d79f608099e6;hpb=93f48173c60fd6ac16b1fde9c795cd45423e87cb;p=builder.git diff --git a/source/copy.h b/source/copy.h index a6d5c51..283ef48 100644 --- a/source/copy.h +++ b/source/copy.h @@ -18,9 +18,11 @@ private: public: Worker(Copy &i): copy(i), done(false) { launch(); } bool get_done() const { return done; } + bool get_error() const { return error; } private: Copy © bool done; + bool error; void main(); };