KShare/platformspecifics/u32/u32backend.hpp

16 lines
258 B
C++
Raw Normal View History

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