mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
17 lines
313 B
C++
17 lines
313 B
C++
#include "intelligui.h"
|
|
|
|
#include <QApplication>
|
|
#include<QHBoxLayout>
|
|
#include<QLabel>
|
|
#include<QPushButton>
|
|
#include<QImage>
|
|
#include<QPixmap>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication application(argc, argv);
|
|
IntelliGUI* win = new IntelliGUI();
|
|
win->show();
|
|
return application.exec();
|
|
}
|