/* * simpletask.h * * Created on: 30.05.2013 * Author: trifon */ #ifndef SIMPLETASK_H_ #define SIMPLETASK_H_ #include "basetask.h" class SimpleTask : public BaseTask { private: int totalTime; int progress; public: SimpleTask(char const*, int); void print() const; int time() const; int getProgress() const; int work(int=1); }; #endif /* SIMPLETASK_H_ */