mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
24 lines
401 B
C
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
|