aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/apiextractorflags.h
blob: 6f69b8b77f1d52484f956f653bdf752372058fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef APIEXTRACTORFLAGS_H
#define APIEXTRACTORFLAGS_H

#include <QtCore/QFlags>

enum class ApiExtractorFlag
{
    UsePySideExtensions = 0x1,
    AvoidProtectedHack = 0x2
};

Q_DECLARE_FLAGS(ApiExtractorFlags, ApiExtractorFlag)
Q_DECLARE_OPERATORS_FOR_FLAGS(ApiExtractorFlags)

#endif // APIEXTRACTORFLAGS_H