-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
59 lines (58 loc) · 1.28 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "types/pointer.h"
#include "types/qatomicint.h"
#include "types/qbitarray.h"
#include "types/qbytearray.h"
#include "types/qchar.h"
#include "types/qdate.h"
#include "types/qdatetime.h"
#include "types/qdir.h"
#include "types/qevent.h"
#include "types/qfile.h"
#include "types/qfileinfo.h"
#include "types/qflags.h"
#include "types/qhash.h"
#include "types/qhostaddress.h"
#include "types/qlist.h"
#include "types/qlocale.h"
#include "types/qmap.h"
#include "types/qmodelindex.h"
#include "types/qstring.h"
#include "types/qtemporarydir.h"
#include "types/qscopedpointer.h"
#include "types/qsharedpointer.h"
#include "types/qtime.h"
#include "types/qtimezone.h"
#include "types/qurl.h"
#include "types/quuid.h"
#include "types/qvariant.h"
int main()
{
DemoPointer();
DemoQAtomicInt();
DemoQBitArray();
DemoQByteArray();
DemoQChar();
DemoQDate();
DemoQDateTime();
DemoQDir();
DemoQEvent();
DemoQFile();
DemoQFileInfo();
DemoQFlags();
DemoQHash();
DemoQHostAddress();
DemoQList();
DemoQLocale();
DemoQMap();
DemoQModelIndex();
DemoQString();
DemoQTemporaryDir();
DemoQScopedPointer();
DemoQSharedPointer();
DemoQTime();
DemoQTimeZone();
DemoQUrl();
DemoQUuid();
DemoQVariant();
return 0;
}