mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
16 lines
305 B
C
16 lines
305 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);
|
||
|
};
|
||
|
|
||
|
#endif // FLUHTTPINTERCEPTOR_H
|