vector in cardsChance

This commit is contained in:
floty
2008-12-20 18:47:38 +00:00
parent 7ba70be3ac
commit c95b4aecf8
4 changed files with 10 additions and 15 deletions
+2 -3
View File
@@ -24,10 +24,9 @@
#include "arraydata.h"
#include "tools.h"
#include<iostream>
#include<vector>
using namespace std;
class CardsValue{
public:
@@ -41,7 +40,7 @@ public:
int holeCardsToIntCode(int*);
int* intCodeToHoleCards(int);
vector< vector<int> > calcCardsChance(GameState, int*, int*);
std::vector< std::vector<int> > calcCardsChance(GameState, int*, int*);
int** showdown(GameState, int**, int);
};