File: dplatformnativeinterface.h

package info (click to toggle)
dtkgui 5.7.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,340 kB
  • sloc: cpp: 19,512; ansic: 34; makefile: 15; sh: 15
file content (18 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later

#ifndef DPLATFORMNATIVEINTERFACE_H
#define DPLATFORMNATIVEINTERFACE_H

#include <QObject>
#include <qpa/qplatformnativeinterface.h>

class DPlatformNativeInterface : public QPlatformNativeInterface
{
public:
    DPlatformNativeInterface();
    virtual QFunctionPointer platformFunction(const QByteArray &function) const;
};

#endif // DPLATFORMNATIVEINTERFACE_H