diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 18:39:14 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 18:39:14 -0200 |
commit | 3e44c208f67b87f17e086bb1361f4422fb6ac5ce (patch) | |
tree | 136a89491eec953644e89f58f626d2de99f99500 /Project/ControlElement.h | |
parent | 58148f1ebe5be64231965ca76ae13e4690528e55 (diff) | |
download | PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.tar.gz PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.tar.xz PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.zip |
Some class organization
Diffstat (limited to 'Project/ControlElement.h')
-rw-r--r-- | Project/ControlElement.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Project/ControlElement.h b/Project/ControlElement.h new file mode 100644 index 0000000..69f9d83 --- /dev/null +++ b/Project/ControlElement.h @@ -0,0 +1,14 @@ +#ifndef CONTROLELEMENT_H +#define CONTROLELEMENT_H + +#include "Element.h" + +class ControlElement : public Element +{ +public: + ControlElement(); + ~ControlElement(); + +}; + +#endif // CONTROLELEMENT_H |