KShare/platformspecifics/mac/macbackend.hpp

19 lines
304 B
C++
Raw Normal View History

2017-05-13 11:03:46 +02:00
#ifndef MACBACKEND_HPP
#define MACBACKEND_HPP
#include <QPixmap>
#define PLATFORM_CAPABILITY_PID
2017-05-13 11:03:46 +02:00
class PlatformBackend {
public:
2017-05-13 11:03:46 +02:00
QPixmap getCursor();
pid_t pid();
2017-05-13 11:03:46 +02:00
static PlatformBackend &inst() {
static PlatformBackend inst;
return inst;
}
};
#endif // MACBACKEND_HPP