RetroShare/plugins/patience_plugin/Patience/Ablagestapel.h
defnax 0b78ed6ff8 added patience plugin
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-08 22:33:14 +00:00

24 lines
401 B
C++

#ifndef ABLAGESTAPEL_H
#define ABLAGESTAPEL_H
#include "Basisstapel.h"
class Ablagestapel : public Basisstapel
{
Q_OBJECT
public:
Ablagestapel(const QPixmap& pixmap, Scene* oparent, QGraphicsItem* gparent = 0);
virtual ~Ablagestapel();
virtual bool ablage_moeglich(Karte*) const;
public slots:
virtual void passe_groesse_an(double);
protected:
virtual QPointF ablageposition() const;
};
#endif