/*
        dealpile.h

        V1.00 - 151096  Kimmo Teräväinen
        -----   ------  ----------------
        V0.01   201196  Started from junkpile.h
        V0.10   130297  Ready, also srand called.

*/
#ifndef DC1_POKER_DEALPILE
#define DC1_POKER_DEALPILE

#include <time.h>
#include <stdlib.h>
#include "cardpile.h"


class cDealPile : public cCardPile {
public:
  cDealPile(int lkm=52,int x=20,int y=50) : cCardPile(lkm,x,y)
  {
    srand(clock());
  }

  void Shuffle();
  void Lift();
};

#endif
