portable-devtools / qt /6.8.1 /msvc2022_64 /include /QtQuickControls2BasicStyleImpl /qtquickcontrols2basicstyleimplexports.h
| // Copyright (C) 2022 The Qt Company Ltd. | |
| // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only | |
| /* outside library -> inline decl + defi */ | |
| /* static builds treat everything as part of the library, so they never inline */ | |
| /* inside library, inside removed_api.cpp: | |
| * keep deprecated API -> non-inline decl; | |
| * remove deprecated API -> inline decl; | |
| * definition is always available */ | |
| QT_IF_DEPRECATED_SINCE(major, minor, inline, /* not inline */) | |
| /* inside library, outside removed_api.cpp: | |
| * keep deprecated API -> non-inline decl, no defi; | |
| * remove deprecated API -> inline decl, defi */ | |
| QT_IF_DEPRECATED_SINCE(major, minor, inline, /* not inline */) | |
| QT_IF_DEPRECATED_SINCE(major, minor, 1, 0) | |