diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-09-19 21:14:46 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 21:14:46 -0300 |
commit | fa2776e9a939a793a9e46a0cc5880dda868e7028 (patch) | |
tree | 302f16d6d9af20a293d18d8a553ba2eac19a0fae /Project/Element.h | |
parent | 3be51dc6e55414c76e7059a8dffa74a99268a7c8 (diff) | |
parent | 011fe58b631f66b715b0ba0d3f8be58277b355b2 (diff) | |
download | PSP.git-fa2776e9a939a793a9e46a0cc5880dda868e7028.tar.gz PSP.git-fa2776e9a939a793a9e46a0cc5880dda868e7028.tar.xz PSP.git-fa2776e9a939a793a9e46a0cc5880dda868e7028.zip |
Merge pull request #38 from Thales1330/wip/open-dot-psp
Wip open dot psp
Diffstat (limited to 'Project/Element.h')
-rw-r--r-- | Project/Element.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Project/Element.h b/Project/Element.h index 08fdfe9..2cd7392 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -5,6 +5,8 @@ #include <wx/geometry.h> #include <wx/cursor.h> #include <wx/menu.h> +#include <wx/stdpaths.h> +#include <wx/filename.h> #include <GL/gl.h> #include <complex> @@ -85,6 +87,13 @@ protected: GLdouble rgba[4]; }; +/** + * @class Element + * @author Thales Lima Oliveira <thales@ufu.br> + * @date 19/09/2017 + * @file Element.h + * @brief Base class of all elements of the program. This class is responsible for manage graphical and his data. + */ class Element { public: |