working need to put in shape of pi

This commit is contained in:
Brady Bodily
2018-04-11 22:53:01 +00:00
parent d089172e5e
commit 88e5128704
24 changed files with 462 additions and 97 deletions

13
Map.hpp Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <unordered_map>
#include <mutex>
class Map{
private:
std::mutex qMutex;
public:
std::unordered_map<int, unsigned int> uMap;
void safeInsert(int key, unsigned int value);
unsigned int find(int key);
};