mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 05:38:37 +08:00
19 lines
316 B
C
19 lines
316 B
C
|
#ifndef FLUHTTPINTERCEPTOR_H
|
||
|
#define FLUHTTPINTERCEPTOR_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QtQml/qqml.h>
|
||
|
|
||
|
class FluHttpInterceptor : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
QML_NAMED_ELEMENT(FluHttpInterceptor)
|
||
|
public:
|
||
|
explicit FluHttpInterceptor(QObject *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // FLUHTTPINTERCEPTOR_H
|