-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdafx.h
31 lines (27 loc) · 1.05 KB
/
stdafx.h
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
#ifndef STDAFX_H
#define STDAFX_H
//---------------------------------------------------------------------------
// Add C includes here
//---------------------------------------------------------------------------
#if defined __cplusplus
//---------------------------------------------------------------------------
// Add C++ includes here
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// STL Headers
//---------------------------------------------------------------------------
#include <cassert>
#include <exception>
#include <memory>
#include <thread>
//---------------------------------------------------------------------------
// Qt Headers
//---------------------------------------------------------------------------
#include <QApplication>
#include <QDebug>
#include <QMainWindow>
#include <QObject>
#include <QThread>
//---------------------------------------------------------------------------
#endif // if defined __cplusplus
#endif // STDAFX_H