diff options
Diffstat (limited to 'Project/ControlElementContainer.h')
-rw-r--r-- | Project/ControlElementContainer.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Project/ControlElementContainer.h b/Project/ControlElementContainer.h index 0e2adc0..5ff218f 100644 --- a/Project/ControlElementContainer.h +++ b/Project/ControlElementContainer.h @@ -1,19 +1,21 @@ #ifndef CONTROLELEMENTCONTAINER_H #define CONTROLELEMENTCONTAINER_H -class ControlEditor; +#include <vector> +class ControlEditor; class ControlElement; -class ConnectionLine; -class Constant; -class Exponential; -class Gain; -class IOControl; -class Limiter; -class Multiplier; -class RateLimiter; -class Sum; -class TransferFunction; + +#include "ConnectionLine.h" +#include "Constant.h" +#include "Exponential.h" +#include "Gain.h" +#include "IOControl.h" +#include "Limiter.h" +#include "Multiplier.h" +#include "RateLimiter.h" +#include "Sum.h" +#include "TransferFunction.h" class ControlElementContainer { |