X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffiletarget.h;h=982b8cb6abce166751d05cd4f5c4b82021503d56;hb=a40db37e1e681d397d4bfc6c893e15945c533b72;hp=3b8bfcc4a0f0212f43bc23a058ecbf6f422215c2;hpb=e68e95f8a44150e69d2f4b74995a12013dfe75aa;p=builder.git diff --git a/source/filetarget.h b/source/filetarget.h index 3b8bfcc..982b8cb 100644 --- a/source/filetarget.h +++ b/source/filetarget.h @@ -19,10 +19,12 @@ class FileTarget: public Target { protected: Msp::FS::Path path; + unsigned size; FileTarget(Builder &, const Package *, const Msp::FS::Path &); public: const Msp::FS::Path &get_path() const { return path; } + unsigned get_size() const { return size; } }; #endif