#ifndef DISPLAY_H
#define DISPLAY_H

#include <QPixmap>
#include <QLabel>

class Display {
public:
    Display();
    void setImage(QLabel* label, const QString& imagePath);

private:
    QPixmap loadPixmap(const QString& imagePath);
};

#endif // DISPLAY_H