mirror of
https://github.com/NohamR/RMHook-Win.git
synced 2026-05-26 04:17:10 +00:00
Add Qt libs and headers
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
// Copyright (C) 2011 Richard J. Moore <rich@kde.org>
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QSSLCERTIFICATEEXTENSION_H
|
||||
#define QSSLCERTIFICATEEXTENSION_H
|
||||
|
||||
#include <QtNetwork/qtnetworkglobal.h>
|
||||
#include <QtCore/qnamespace.h>
|
||||
#include <QtCore/qshareddata.h>
|
||||
#include <QtCore/qstring.h>
|
||||
#include <QtCore/qvariant.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QSslCertificateExtensionPrivate;
|
||||
|
||||
class Q_NETWORK_EXPORT QSslCertificateExtension
|
||||
{
|
||||
public:
|
||||
QSslCertificateExtension();
|
||||
QSslCertificateExtension(const QSslCertificateExtension &other);
|
||||
QSslCertificateExtension &operator=(QSslCertificateExtension &&other) noexcept { swap(other); return *this; }
|
||||
QSslCertificateExtension &operator=(const QSslCertificateExtension &other);
|
||||
~QSslCertificateExtension();
|
||||
|
||||
void swap(QSslCertificateExtension &other) noexcept { d.swap(other.d); }
|
||||
|
||||
QString oid() const;
|
||||
QString name() const;
|
||||
QVariant value() const;
|
||||
bool isCritical() const;
|
||||
|
||||
bool isSupported() const;
|
||||
|
||||
private:
|
||||
friend class QSslCertificatePrivate;
|
||||
QSharedDataPointer<QSslCertificateExtensionPrivate> d;
|
||||
};
|
||||
|
||||
Q_DECLARE_SHARED(QSslCertificateExtension)
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
|
||||
#endif // QSSLCERTIFICATEEXTENSION_H
|
||||
|
||||
|
||||
Reference in New Issue
Block a user