mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 03:40:31 +02:00
working versiom
This commit is contained in:
26
IntelliPhoto/Scribble/main.cpp
Normal file
26
IntelliPhoto/Scribble/main.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
|
||||
|
||||
// ---------- main.cpp ----------
|
||||
|
||||
#include "mainwindow.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// The main application
|
||||
QApplication app(argc, argv);
|
||||
|
||||
// Create and open the main window
|
||||
MainWindow window;
|
||||
window.show();
|
||||
|
||||
// Display the main window
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
// ---------- END main.cpp ----------
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user