mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
22 lines
423 B
C++
22 lines
423 B
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
//! [104]
|
||
|
// Add C includes here
|
||
|
|
||
|
#if defined __cplusplus
|
||
|
// Add C++ includes here
|
||
|
#include <stdlib>
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
#include <QApplication> // Qt includes
|
||
|
#include <QPushButton>
|
||
|
#include <QLabel>
|
||
|
#include "thirdparty/include/libmain.h"
|
||
|
#include "my_stable_class.h"
|
||
|
...
|
||
|
#endif
|
||
|
//! [104]
|
||
|
|
||
|
|