vector in cardsChance

This commit is contained in:
floty
2008-12-20 16:47:02 +00:00
parent 10624d5399
commit 7ba70be3ac
6 changed files with 106 additions and 53 deletions
+6 -1
View File
@@ -24,6 +24,11 @@
#include "arraydata.h"
#include "tools.h"
#include<iostream>
#include<vector>
using namespace std;
class CardsValue{
public:
CardsValue();
@@ -36,7 +41,7 @@ public:
int holeCardsToIntCode(int*);
int* intCodeToHoleCards(int);
int** calcCardsChance(GameState, int*, int*);
vector< vector<int> > calcCardsChance(GameState, int*, int*);
int** showdown(GameState, int**, int);
};