summaryrefslogtreecommitdiffstats
path: root/kpat/clock.h
blob: eac9a984109758fbdd1461d01d652b2e5921a7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef CLOCK_H
#define CLOCK_H

#include "dealer.h"

class Clock : public Dealer {
    Q_OBJECT
  

public:
    Clock( TDEMainWindow* parent=0, const char* name=0);
    virtual bool checkAdd   ( int checkIndex, const Pile *c1, const CardList& c2) const;
    virtual bool startAutoDrop() { return false; }

public slots:
    void deal();
    virtual void restart();

private:
    Pile* store[8];
    Pile* target[12];
    Deck *deck;
};

#endif