This commit is contained in:
David Skoland 2017-01-01 16:14:25 +01:00
parent edf37fba49
commit 05a48bd104
8 changed files with 42 additions and 0 deletions

6
aobutton.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "aobutton.h"
AOButton::AOButton()
{
}

11
aobutton.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef AOBUTTON_H
#define AOBUTTON_H
class AOButton : public QPushButton
{
public:
AOButton();
};
#endif // AOBUTTON_H

6
aoimage.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "aoimage.h"
AOImage::AOImage()
{
}

11
aoimage.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef AOIMAGE_H
#define AOIMAGE_H
class AOImage : public QLabel
{
public:
AOImage();
};
#endif // AOIMAGE_H

0
file_functions.cpp Normal file
View File

4
file_functions.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef FILE_FUNCTIONS_H
#define FILE_FUNCTIONS_H
#endif // FILE_FUNCTIONS_H

0
global_variables.cpp Normal file
View File

4
global_variables.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef GLOBAL_VARIABLES_H
#define GLOBAL_VARIABLES_H
#endif // GLOBAL_VARIABLES_H