/* dtkComposerEvaluator_p.h --- * * Author: tkloczko * Copyright (C) 2011 - Thibaud Kloczko, Inria. * Created: Mon Jan 30 11:39:36 2012 (+0100) * Version: $Id: b7e44fa51b2b7ee8016a35751cc312fb93c9f526 $ */ /* Commentary: * */ /* Change log: * */ #ifndef DTKCOMPOSEREVALUATOR_P_H #define DTKCOMPOSEREVALUATOR_P_H #include #include "dtkComposerGraph.h" #include "dtkComposerGraphNode.h" #include class DTKCOMPOSERSUPPORT_EXPORT dtkComposerEvaluatorPrivate : public QThread { public: dtkComposerGraph *graph; QContiguousCache stack; dtkComposerGraphNode *current; dtkComposerGraphNode *start_node; dtkComposerGraphNode *end_node; public: QHash eval_count; QHash eval_duration; public: QHash > futures; QMultiHash waitfor; public: bool should_stop; bool notify; bool use_gui; bool profiling; public: int max_stack_size; }; #endif