From 05a48bd104dc3e1b88bf4aba8477f02274757d69 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Sun, 1 Jan 2017 16:14:25 +0100 Subject: [PATCH] - --- aobutton.cpp | 6 ++++++ aobutton.h | 11 +++++++++++ aoimage.cpp | 6 ++++++ aoimage.h | 11 +++++++++++ file_functions.cpp | 0 file_functions.h | 4 ++++ global_variables.cpp | 0 global_variables.h | 4 ++++ 8 files changed, 42 insertions(+) create mode 100644 aobutton.cpp create mode 100644 aobutton.h create mode 100644 aoimage.cpp create mode 100644 aoimage.h create mode 100644 file_functions.cpp create mode 100644 file_functions.h create mode 100644 global_variables.cpp create mode 100644 global_variables.h diff --git a/aobutton.cpp b/aobutton.cpp new file mode 100644 index 0000000..f2d7012 --- /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 0000000..72bebf8 --- /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 0000000..507137f --- /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 0000000..d35eca0 --- /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 0000000..e69de29 diff --git a/file_functions.h b/file_functions.h new file mode 100644 index 0000000..aa3f95e --- /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 0000000..e69de29 diff --git a/global_variables.h b/global_variables.h new file mode 100644 index 0000000..f66bc3d --- /dev/null +++ b/global_variables.h @@ -0,0 +1,4 @@ +#ifndef GLOBAL_VARIABLES_H +#define GLOBAL_VARIABLES_H + +#endif // GLOBAL_VARIABLES_H