00001 #ifndef TASKTYPEFOCUS_H
00002 #define TASKTYPEFOCUS_H
00003
00004 #include "focusinterface.h"
00005
00006 namespace control
00007 {
00008
00009 class TaskTypeFocus : public FocusInterface
00010 {
00011 Q_OBJECT
00012 Q_INTERFACES(control::FocusInterface)
00013
00014 public:
00015
00016 QString description() const;
00017 bool applyFocus(QList<domain::Task*>* tasks);
00018 };
00019
00020 }
00021
00022 #endif