Removing several unnecessary allocations.

This commit is contained in:
lotodore
2011-02-28 22:05:44 +00:00
parent a87a12e8b0
commit 6f290be894
9 changed files with 35 additions and 76 deletions
+2 -6
View File
@@ -27,12 +27,8 @@
class ArrayData
{
public:
ArrayData();
~ArrayData();
void getHandChancePreflop(int, int**);
std::vector< std::vector<int> > getHandChancePreflop(int);
static void getHandChancePreflop(int, int**);
static std::vector< std::vector<int> > getHandChancePreflop(int);
};
#endif