This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/utils/DoricSliderBridge.h

19 lines
342 B
C
Raw Normal View History

2021-06-01 19:30:37 +08:00
#ifndef DORICSLIDERBRIDGE_H
#define DORICSLIDERBRIDGE_H
#include <QObject>
#include <QVariant>
#include "DoricExport.h"
class DORIC_EXPORT DoricSliderBridge : public QObject {
Q_OBJECT
public:
explicit DoricSliderBridge(QObject *parent = nullptr);
Q_INVOKABLE
void onPageSlided(QString pointer);
};
#endif // DORICSLIDERBRIDGE_H