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