| 1 | // Copyright (C) 2020 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
| 3 | |
| 4 | #include <QtCore/qglobal.h> |
| 5 | |
| 6 | #ifndef ACCESS_H |
| 7 | #define ACCESS_H |
| 8 | |
| 9 | QT_BEGIN_NAMESPACE |
| 10 | |
| 11 | enum class Access : unsigned char { Public, Protected, Private }; |
| 12 | |
| 13 | QT_END_NAMESPACE |
| 14 | |
| 15 | #endif // ACCESS_H |
| 16 |
