diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-10-09 22:17:10 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-10-09 22:17:10 -0300 |
commit | eea796f53f5d9dc1444a620713b3326f04b73339 (patch) | |
tree | 2cc6cd35c3dfa718c26b7f5de9dcee913fb93028 /Project/ControlEditor.h | |
parent | aa2378020ee0bbfd041681cfdbe62a8d028687f3 (diff) | |
download | PSP.git-eea796f53f5d9dc1444a620713b3326f04b73339.tar.gz PSP.git-eea796f53f5d9dc1444a620713b3326f04b73339.tar.xz PSP.git-eea796f53f5d9dc1444a620713b3326f04b73339.zip |
Divider control element implemented
Abstract class math operations implemented
Divider need to be redesigned
Expor/import divider functions implemented but supressed
Diffstat (limited to 'Project/ControlEditor.h')
-rw-r--r-- | Project/ControlEditor.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Project/ControlEditor.h b/Project/ControlEditor.h index 315efec..5383e85 100644 --- a/Project/ControlEditor.h +++ b/Project/ControlEditor.h @@ -44,6 +44,8 @@ class RateLimiter; class Exponential; class Constant; class Gain; +class MathOperation; +class Divider; class ControlElementSolver; class ControlElementContainer; @@ -51,7 +53,18 @@ class ControlElementContainer; class ChartView; class ElementDataObject; -enum ControlElementButtonID { ID_IO = 0, ID_TF, ID_SUM, ID_CONST, ID_LIMITER, ID_GAIN, ID_MULT, ID_EXP, ID_RATELIM }; +enum ControlElementButtonID { + ID_IO = 0, + ID_TF, + ID_SUM, + ID_CONST, + ID_LIMITER, + ID_GAIN, + ID_MULT, + ID_EXP, + ID_RATELIM, + ID_MATH_DIV +}; /** * @class ControlElementButton |