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
+1 -4
View File
@@ -22,11 +22,8 @@
#include <core/loghelper.h>
#include<iostream>
#include<vector>
using namespace std;
class ArrayData{
public:
ArrayData();
@@ -34,7 +31,7 @@ public:
~ArrayData();
void getHandChancePreflop(int, int**);
vector< vector<int> > getHandChancePreflop(int);
std::vector< std::vector<int> > getHandChancePreflop(int);
};
#endif