diff options
Diffstat (limited to 'aoevidencebutton.h')
| -rw-r--r-- | aoevidencebutton.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/aoevidencebutton.h b/aoevidencebutton.h new file mode 100644 index 0000000..1ac9878 --- /dev/null +++ b/aoevidencebutton.h @@ -0,0 +1,20 @@ +#ifndef AOEVIDENCEBUTTON_H +#define AOEVIDENCEBUTTON_H + +#include "aoapplication.h" + +#include <QPushButton> +#include <QString> + +class AOEvidenceButton : public QPushButton +{ +public: + AOEvidenceButton(QWidget *p_parent, AOApplication *p_ao_app); + + void set_image(QString p_image); + +private: + AOApplication *ao_app; +}; + +#endif // AOEVIDENCEBUTTON_H |
