summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qwidgetsvariant.cpp
blob: 17a19aa780d21348766aebf645d675002d398293 (plain)
12345678910111213141516171819202122232425262728293031323334353637
// Copyright (C) 2016 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#include"qvariant.h"#include"qsizepolicy.h"#include"qwidget.h"#include <private/qmetatype_p.h> QT_BEGIN_NAMESPACE namespace{// NOLINTNEXTLINE(cppcoreguidelines-virtual-class-destructor): this is not a base classstaticconstexprstruct: QMetaTypeModuleHelper {constQtPrivate::QMetaTypeInterface *interfaceForType(int type)const override {switch(type) {QT_FOR_EACH_STATIC_WIDGETS_CLASS(QT_METATYPE_CONVERT_ID_TO_TYPE)default:returnnullptr;}}} qVariantWidgetsHelper;#undef QT_IMPL_METATYPEINTERFACE_WIDGETS_TYPES}// namespacevoidqRegisterWidgetsVariant(){ qMetaTypeWidgetsHelper = &qVariantWidgetsHelper;}Q_CONSTRUCTOR_FUNCTION(qRegisterWidgetsVariant) QT_END_NAMESPACE 
close