vector in cardsChance

This commit is contained in:
floty
2008-12-20 19:01:07 +00:00
parent c95b4aecf8
commit e7a63b1a99
+1 -4
View File
@@ -12,14 +12,11 @@
#ifndef MYCHANCELABEL_H
#define MYCHANCELABEL_H
#include <iostream>
#include <vector>
#include <QtGui>
#include <QtCore>
using namespace std;
class gameTableImpl;
class MyChanceLabel : public QLabel
@@ -32,7 +29,7 @@ public:
void setMyW ( gameTableImpl* theValue ) { myW = theValue; }
void paintEvent(QPaintEvent * event);
void refreshChance(vector< vector<int> >);
void refreshChance(std::vector< std::vector<int> >);
void resetChance();
private: