21 lines
525 B
C++
21 lines
525 B
C++
// 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
|
|
|
|
#ifndef QWINDOWSGDINATIVEINTERFACE_H
|
|
#define QWINDOWSGDINATIVEINTERFACE_H
|
|
|
|
#include "qwindowsnativeinterface.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QWindowsGdiNativeInterface : public QWindowsNativeInterface
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
void *nativeResourceForBackingStore(const QByteArray &resource, QBackingStore *bs) override;
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QWINDOWSGDINATIVEINTERFACE_H
|