blob: dfe385bf76f19f2f2f0d985d0b3f859cb4053848 (
plain)
12345678910111213141516171819202122232425262728293031 | // Copyright (C) 2011 - 2012 Research In Motion// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only#ifndef QQNXSERVICES_H#define QQNXSERVICES_H#include <qpa/qplatformservices.h> QT_BEGIN_NAMESPACE class QQnxAbstractNavigator;class QQnxServices :public QPlatformServices {public:explicitQQnxServices(QQnxAbstractNavigator *navigator);~QQnxServices();boolopenUrl(const QUrl &url) override;boolopenDocument(const QUrl &url) override;private:boolnavigatorInvoke(const QUrl &url);private: QQnxAbstractNavigator *m_navigator;}; QT_END_NAMESPACE #endif// QQNXSERVICES_H
|