mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
14 lines
200 B
C++
14 lines
200 B
C++
|
|
#include <QApplication>
|
||
|
|
|
||
|
|
#include "gallery.h"
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
QApplication application(argc, argv);
|
||
|
|
|
||
|
|
Gallery gallery;
|
||
|
|
gallery.show();
|
||
|
|
|
||
|
|
return application.exec();
|
||
|
|
}
|