2017-10-21 06:11:49 +01:00
|
|
|
#ifndef PINCHCATCHER_H
|
|
|
|
#define PINCHCATCHER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class pinchCatcher : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit pinchCatcher(QObject *parent = 0);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
|
2021-11-16 03:28:55 +00:00
|
|
|
#endif // PINCHCATCHER_H
|