QtExamples/TestHotKey/main.cpp

24 lines
482 B
C++
Raw Permalink Normal View History

/*
* Copyright (C) 2019~2022 All rights reserved.
*
* Author: XMuli xmulitech@gmail.com
*
* GitHub: https://github.com/XMuli
* Blog: https://ifmet.cn
* CSDN: https://blog.csdn.net/qq_33154343
*/
#include "widget.h"
#include <QApplication>
#include "tray.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tray* tary = new Tray();
QApplication::setQuitOnLastWindowClosed(false);
return a.exec();
}