mirror of
https://github.com/NohamR/RMHook-Win.git
synced 2026-05-25 19:59:46 +00:00
27 lines
612 B
C++
27 lines
612 B
C++
// Copyright (C) 2016 Kurt Pattyn <pattyn.kurt@gmail.com>.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
#ifndef QMASKGENERATOR_H
|
|
#define QMASKGENERATOR_H
|
|
|
|
#include <QtCore/QObject>
|
|
#include "QtWebSockets/qwebsockets_global.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Q_WEBSOCKETS_EXPORT QMaskGenerator : public QObject
|
|
{
|
|
Q_DISABLE_COPY(QMaskGenerator)
|
|
|
|
public:
|
|
explicit QMaskGenerator(QObject *parent = nullptr);
|
|
~QMaskGenerator() override;
|
|
|
|
virtual bool seed() = 0;
|
|
virtual quint32 nextMask() = 0;
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QMASKGENERATOR_H
|