You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-app/oscursor.h

26 lines
410 B

#ifndef OSCURSOR_H
#define OSCURSOR_H
#include <QObject>
#include <QString>
#include <QPoint>
class OSCursor : public QObject
{
Q_OBJECT
//QObject();
public:
//QObject(QObject* aParent);
//OSCursor();
explicit OSCursor(QObject *parent = 0);
Q_INVOKABLE QPoint getPosition() const;
};
//OSCursor::OSCursor() : QObject(NULL){
//}
//Q_DECLARE_METATYPE(OSCursor)
#endif // OSCURSOR_H