/* * quicktask.h * * Created on: 30.05.2013 * Author: trifon */ #ifndef QUICKTASK_H_ #define QUICKTASK_H_ #include "basetask.h" class QuickTask : public BaseTask { private: bool finished; public: QuickTask(char const*); void print() const; int time() const; int getProgress() const; int work(int=1); }; #endif /* QUICKTASK_H_ */