// Copyright (C) 2016 Intel Corporation. // Copyright (C) 2023 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 #ifndef QTSVGGLOBAL_H #define QTSVGGLOBAL_H #include #include QT_BEGIN_NAMESPACE namespace QtSvg { enum Option : quint32 { NoOption = 0x00, Tiny12FeaturesOnly = 0x01, AssumeTrustedSource = 0x02, }; Q_DECLARE_FLAGS(Options, Option) Q_DECLARE_OPERATORS_FOR_FLAGS(Options) } QT_END_NAMESPACE #endif