-
Notifications
You must be signed in to change notification settings - Fork 27
/
main.cpp
29 lines (27 loc) · 1.55 KB
/
main.cpp
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
// Qt for Linux Project. GitLab
/****************************************************************************/
/* */
/* @file : main.cpp */
/* @Copyright : MULTIBEANS ORG rights reserved. */
/* @Revision : Ver 1.0. */
/* @Data : 2017.09.16 Realse. */
/* @Belong : PROJECT. */
/* @Git : https://gitlab.com/coarlqq/serialPort.git */
/* **code : (UTF-8) in Linux(Ubuntu16.04). Qt 5.7.1 for Linux platform. */
/****************************************************************************/
/* @Attention: */
/* --------------------------------------------------------------------- */
/* | Data | Behavior | Offer | Content | */
/* | 2017.09.16 | create |Carlos Lopez(M) | ceate the document. | */
/* --------------------------------------------------------------------- */
/* Email: [email protected] MULTIBEANS. */
/****************************************************************************/
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}