/* dtkComposerEvaluator_p.h --- * * Author: tkloczko * Copyright (C) 2011 - Thibaud Kloczko, Inria. * Created: Mon Jan 30 11:39:36 2012 (+0100) * Version: $Id: 48c65c45b213855273f0a24a989104e7583dadb8 $ * Last-Updated: Thu Apr 11 10:30:28 2013 (+0200) * By: Thibaud Kloczko * Update #: 39 */ /* Commentary: * */ /* Change log: * */ #pragma once #include #include class dtkComposerGraph; class dtkComposerGraphNode; class DTKCOMPOSER_EXPORT dtkComposerEvaluatorPrivate : public QThread { public: dtkComposerGraph *graph; dtkComposerGraphNode *current; dtkComposerGraphNode *start_node; dtkComposerGraphNode *end_node; public: QContiguousCache stack; public: QHash eval_count; QHash eval_duration; public: QHash > futures; QMultiHash waitfor; public: bool should_stop; bool notify; bool use_gui; bool profiling; bool catch_exceptions; bool enable_msg; public: int max_stack_size; };