#ifndef _INSURANCE_WINDOW_H_
#define _INSURANCE_WINDOW_H_

#include <qdialog.h>


class InsuranceWindow : public QDialog {
   private:
      float _bet;
      QtedDollarScrollBar *_bet_p;
   public:
      InsuranceWindow(float max_bet, float bet_inc, QWidget* parent = 0, 
                      const char* name=0, bool modal=FALSE, WFlags f=0);
      float bet(void) { return (_bet_p->getValue()); } 
};

#endif


Documentation generated by root@berlinux on Fre Nov 27 17:29:32 CET 1998