diff options
| author | David Skoland <davidskoland@gmail.com> | 2017-01-01 16:14:25 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2017-01-01 16:14:25 +0100 |
| commit | 05a48bd104dc3e1b88bf4aba8477f02274757d69 (patch) | |
| tree | b47d91c95996a2a00c1e0bf66fce0da176771f4a | |
| parent | edf37fba4949ec902644c5e5937fa62e66c323c9 (diff) | |
-
| -rw-r--r-- | aobutton.cpp | 6 | ||||
| -rw-r--r-- | aobutton.h | 11 | ||||
| -rw-r--r-- | aoimage.cpp | 6 | ||||
| -rw-r--r-- | aoimage.h | 11 | ||||
| -rw-r--r-- | file_functions.cpp | 0 | ||||
| -rw-r--r-- | file_functions.h | 4 | ||||
| -rw-r--r-- | global_variables.cpp | 0 | ||||
| -rw-r--r-- | global_variables.h | 4 |
8 files changed, 42 insertions, 0 deletions
diff --git a/aobutton.cpp b/aobutton.cpp new file mode 100644 index 00000000..f2d7012a --- /dev/null +++ b/aobutton.cpp @@ -0,0 +1,6 @@ +#include "aobutton.h" + +AOButton::AOButton() +{ + +} diff --git a/aobutton.h b/aobutton.h new file mode 100644 index 00000000..72bebf87 --- /dev/null +++ b/aobutton.h @@ -0,0 +1,11 @@ +#ifndef AOBUTTON_H +#define AOBUTTON_H + + +class AOButton : public QPushButton +{ +public: + AOButton(); +}; + +#endif // AOBUTTON_H
\ No newline at end of file diff --git a/aoimage.cpp b/aoimage.cpp new file mode 100644 index 00000000..507137f6 --- /dev/null +++ b/aoimage.cpp @@ -0,0 +1,6 @@ +#include "aoimage.h" + +AOImage::AOImage() +{ + +} diff --git a/aoimage.h b/aoimage.h new file mode 100644 index 00000000..d35eca02 --- /dev/null +++ b/aoimage.h @@ -0,0 +1,11 @@ +#ifndef AOIMAGE_H +#define AOIMAGE_H + + +class AOImage : public QLabel +{ +public: + AOImage(); +}; + +#endif // AOIMAGE_H
\ No newline at end of file diff --git a/file_functions.cpp b/file_functions.cpp new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/file_functions.cpp diff --git a/file_functions.h b/file_functions.h new file mode 100644 index 00000000..aa3f95eb --- /dev/null +++ b/file_functions.h @@ -0,0 +1,4 @@ +#ifndef FILE_FUNCTIONS_H +#define FILE_FUNCTIONS_H + +#endif // FILE_FUNCTIONS_H diff --git a/global_variables.cpp b/global_variables.cpp new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/global_variables.cpp diff --git a/global_variables.h b/global_variables.h new file mode 100644 index 00000000..f66bc3d6 --- /dev/null +++ b/global_variables.h @@ -0,0 +1,4 @@ +#ifndef GLOBAL_VARIABLES_H +#define GLOBAL_VARIABLES_H + +#endif // GLOBAL_VARIABLES_H |
