mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-01-07 05:42:52 +01:00
13 lines
205 B
C++
13 lines
205 B
C++
#include <QtGui/QApplication>
|
|
#include "gallery.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication application(argc, argv);
|
|
|
|
Gallery gallery;
|
|
gallery.show();
|
|
|
|
return application.exec();
|
|
}
|