blob: f22299af89371a775375d7e670884cf516af6d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef EXPONENTIAL_H
#define EXPONENTIAL_H
#include "ControlElement.h"
class Exponential : ControlElement
{
public:
Exponential();
~Exponential();
};
#endif // EXPONENTIAL_H
|