5 #ifndef DYNAMIC_GRAPH_FWD_HH 6 #define DYNAMIC_GRAPH_FWD_HH 8 #include <boost/smart_ptr.hpp> 13 using boost::shared_ptr;
14 using boost::weak_ptr;
15 using boost::static_pointer_cast;
16 using boost::dynamic_pointer_cast;
17 using boost::const_pointer_cast;
18 using boost::make_shared;
24 class EntityRegisterer;
25 class ExceptionAbstract;
26 class ExceptionFactory;
27 class ExceptionSignal;
28 class ExceptionTraces;
31 typedef shared_ptr<Interpreter> InterpreterShPtr_t;
32 class InterpreterHelper;
34 class OutStringStream;
41 template <
typename T,
typename Time>
class Signal;
49 template <
typename T,
typename Time>
class SignalPtr;
A helper class for setting and specifying dependencies between signals.
A type of signal that enforces a time dependency between other signals, making sure its inputs are up...
This is the only type of signal that can be plugged to, using the plug () command.
Signals link I/O ports of entities. They can be constant-valued signals, or copy the value of a heap ...
The base class for signals: not to be used as such.