KShare/platformspecifics/x11/x11backend.hpp

16 lines
278 B
C++

#ifndef X11BACKEND_HPP
#define X11BACKEND_HPP
#include <QPixmap>
class PlatformBackend {
public:
std::tuple<QPoint, QPixmap> getCursor();
static PlatformBackend &inst() {
static PlatformBackend inst;
return inst;
}
};
#endif // X11BACKEND_HPP