mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0b78ed6ff8
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
33 lines
662 B
C++
33 lines
662 B
C++
#ifndef ZIELSTAPEL_H
|
|
#define ZIELSTAPEL_H
|
|
|
|
#include "Basisstapel.h"
|
|
#include <QList>
|
|
|
|
class Siegkontrolle;
|
|
|
|
class Zielstapel : public Basisstapel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Zielstapel(const QPixmap& pixmap, Scene* oparent, QGraphicsItem* gparent = 0);
|
|
virtual ~Zielstapel();
|
|
|
|
virtual void registriere_siegkontrolle(Siegkontrolle*);
|
|
virtual void registriere_nachbar_zielstapel(Basisstapel*, Basisstapel*, Basisstapel*);
|
|
|
|
virtual void ablage_erfolgt();
|
|
virtual bool ablage_moeglich(Karte *) const;
|
|
virtual bool lege_karte_ab(Karte*);
|
|
|
|
public slots:
|
|
virtual void hilfsanfrage_start(Karte*);
|
|
|
|
private:
|
|
Siegkontrolle *siegkontrolle;
|
|
QList<Basisstapel*> nachbarn;
|
|
};
|
|
|
|
#endif
|