-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.cpp
More file actions
37 lines (30 loc) · 755 Bytes
/
main.cpp
File metadata and controls
37 lines (30 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "qt_button.h"
#include <QtWidgets/QApplication>
#include <QtWidgets/QtWidgets>
#include <QtWidgets/QGraphicsOpacityEffect>
#include "shapedwidget.h"
#include "Base_Widget.h"
#include "Base_Dialog.h"
#include "safe360_main.h"
#include "ppstream_main.h"
#include "ppstream_setting.h"
#include <QtPlugin>
//Q_IMPORT_PLUGIN(QPSQLDriverPlugin)
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
/*
//仿360界面
safe360_main w;
w.resize(850, 607);
w.show();
*/
//仿ppstream界面
PPS_Skin *skin = new PPS_Skin();
skin->load();
Skin::instance(skin);
ppstream_main w;
w.show();
return a.exec();
}