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