diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-08 16:31:25 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-08 16:31:25 -0300 |
commit | f19803bc64885bcfaef15cfd7a8139c28d3dd506 (patch) | |
tree | 30698f4bd8bc7fb0919e974cdd81023bb8b8cde2 /Project/ControlElementContainer.h | |
parent | d13b7013afa5ba1d40ee52e77eabd43bfd1b4acd (diff) | |
download | PSP.git-f19803bc64885bcfaef15cfd7a8139c28d3dd506.tar.gz PSP.git-f19803bc64885bcfaef15cfd7a8139c28d3dd506.tar.xz PSP.git-f19803bc64885bcfaef15cfd7a8139c28d3dd506.zip |
Control editor export under implementation
File handling
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 { |