#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    //MainWindow *w = new MainWindow;
    QLabel *label = new QLabel;
    QPixmap myPixmap("C:\Users\user\Desktop\qwe.bmp");
    label->setPixmap( myPixmap );
    label->show();

    return a.exec();
}
