1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/kcardgame/binding-example/kcardgame.hpp
2019-06-05 15:26:22 +03:00

16 lines
337 B
C++

#pragma once
#include <QPixmap>
#include <QObject>
#include <QGuiApplication>
#include "KCardDeck"
#include "KCardTheme"
class Q_DECL_EXPORT MyKCardDeck: public QObject
{
Q_OBJECT
public:
QGuiApplication* app;
KCardDeck * d;
explicit MyKCardDeck();
public slots:
Q_DECL_EXPORT QPixmap *get_card_pixmap(int i);
};