diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-03-30 11:10:06 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-03-30 11:10:06 -0300 |
commit | 045037ce8f2b106acbe5425245746a2dbed65c26 (patch) | |
tree | f81b4003f1ec6f835681c768c945065b1976da42 /Project/Exponential.h | |
parent | 3985018cdb8508b9970646ae4b9886ba4df6dd78 (diff) | |
download | PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.gz PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.xz PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.zip |
Exponencial under implementation
Diffstat (limited to 'Project/Exponential.h')
-rw-r--r-- | Project/Exponential.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Project/Exponential.h b/Project/Exponential.h new file mode 100644 index 0000000..f22299a --- /dev/null +++ b/Project/Exponential.h @@ -0,0 +1,14 @@ +#ifndef EXPONENTIAL_H +#define EXPONENTIAL_H + +#include "ControlElement.h" + +class Exponential : ControlElement +{ +public: + Exponential(); + ~Exponential(); + +}; + +#endif // EXPONENTIAL_H |