BWAPI
Aiur/include/HashMap.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <BWAPI.h>
00003 
00004 using namespace std;
00005 
00006 class HashMap
00007 {
00008 public:
00009         HashMap();
00010         const string hash(const string);
00011 private:
00012         map<const string, const string> hashMap;
00013 };
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Defines