* Tooltips show node type with access specifier, reference count and fully qualified name * Fields and global variables include the type name * Methods and functinos show whole signature. Gets broken into multiple lines if too long. Included changes: * Upgraded to C++14 * fixed clang warnings * Pass location of .srctrlprj file to build.sh script to load on launch * Split off QtCodeField for showing highlighted and annotated code fom QtCodeArea * removed TokenComponentSignature * added TaskDecoratorDelay bug id = 195
30 lines
550 B
C++
30 lines
550 B
C++
#ifndef TASK_DECORATOR_H
|
|
#define TASK_DECORATOR_H
|
|
|
|
#include <memory>
|
|
|
|
#include "utility/scheduling/Task.h"
|
|
|
|
class TaskRunner;
|
|
|
|
class TaskDecorator
|
|
: public Task
|
|
, public std::enable_shared_from_this<TaskDecorator>
|
|
{
|
|
public:
|
|
TaskDecorator();
|
|
virtual ~TaskDecorator();
|
|
std::shared_ptr<TaskDecorator> addChildTask(std::shared_ptr<Task> child);
|
|
|
|
virtual void setTask(std::shared_ptr<Task> task);
|
|
virtual void terminate();
|
|
|
|
protected:
|
|
std::shared_ptr<TaskRunner> m_taskRunner;
|
|
|
|
private:
|
|
virtual void doTerminate();
|
|
};
|
|
|
|
#endif // TASK_DECORATOR_H
|