WoW Addon Manager Client  0.0.1-alpha
A p2p World of Warcraft addon manager
main.cpp
Go to the documentation of this file.
1 #include <QApplication>
2 #include <libtorrent/session.hpp>
3 #include <string>
4 #include "mainwindow.h"
5 #include "upload_addon_dialog.h"
6 #include "settingsmanager.h"
7 #include "addon.h"
8 
9 int main(int argc, char *argv[]) {
10  QApplication wam{argc, argv};
11  SettingsManager settings{};
12  MainWindow window{nullptr, settings};
13 
14  window.show();
15  return QApplication::exec();
16 
17 }
upload_addon_dialog.h
settingsmanager.h
SettingsManager
Definition: settingsmanager.h:14
MainWindow
Definition: mainwindow.h:11
addon.h
mainwindow.h
main
int main(int argc, char *argv[])
Definition: main.cpp:9