-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.cpp
More file actions
27 lines (24 loc) · 1016 Bytes
/
main.cpp
File metadata and controls
27 lines (24 loc) · 1016 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
/**************************************************************************
** Copyright (C) 2013 Southgis Co.,Ltd. Written by Young Yori, All rights reserved.
**--------------------------------------------------------------------------------
** Filename:main.cpp
** Author: Young Yori
** Data: Administrator 2014/2/11 2014
** Description:
** This file is part of the Data Development Department Project and shall
** only be used, modified, and distributed under the terms of the Data
** Development Department this Source.
**
** Included in the build system of the FreeType library.
**--------------------------------------------------------------------------------
** www.newdebug.com, 12319597@qq.com
**************************************************************************/
#include "HighlightButton.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HighlightButton w;
w.show();
return a.exec();
}