mirror of
https://github.com/Snigdha-OS/snigdhaos-assistant.git
synced 2025-09-07 21:25:16 +02:00
15 lines
391 B
C++
15 lines
391 B
C++
//main function of the application, responsible for starting the Qt application and
|
|
//creating an instance of the SnigdhaOSAssistant class.
|
|
|
|
#include "snigdhaosassistant.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
SnigdhaOSAssistant w(nullptr, a.arguments().length() > 1 ? a.arguments()[1] : "");
|
|
w.show();
|
|
return a.exec();
|
|
}
|