mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
git-subtree-dir: src/gui/qocoa git-subtree-split: ffe23cbb2f221bc9eacd1de2134c2947fed71c12
13 lines
200 B
C++
13 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();
|
|
}
|