From 045037ce8f2b106acbe5425245746a2dbed65c26 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Thu, 30 Mar 2017 11:10:06 -0300 Subject: Exponencial under implementation --- Project/Exponential.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Project/Exponential.h (limited to 'Project/Exponential.h') 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 -- cgit