From 3e44c208f67b87f17e086bb1361f4422fb6ac5ce Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Tue, 10 Jan 2017 18:39:14 -0200 Subject: Some class organization --- Project/GraphicalElement.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Project/GraphicalElement.h (limited to 'Project/GraphicalElement.h') diff --git a/Project/GraphicalElement.h b/Project/GraphicalElement.h new file mode 100644 index 0000000..86ca30d --- /dev/null +++ b/Project/GraphicalElement.h @@ -0,0 +1,14 @@ +#ifndef GRAPHICALELEMENT_H +#define GRAPHICALELEMENT_H + +#include "Element.h" + +class GraphicalElement : public Element +{ +public: + GraphicalElement(); + ~GraphicalElement(); + +}; + +#endif // GRAPHICALELEMENT_H -- cgit