numlockmanager/main.cpp

14 lines
221 B
C++
Raw Permalink Normal View History

2023-09-01 14:13:15 +00:00
#include "numlockmanager.h"
#include <QApplication>
#include <QSystemTrayIcon>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
NumLockManager w;
w.hide();
return a.exec();
}