1#pragma once 2#ifdef _XBOX 3//using namespace std; 4namespace std 5{ 6 namespace tr1 7 { 8 9 template<class T> 10 class hash< shared_ptr<T> > 11 { 12 public: 13 size_t operator()(const shared_ptr<T>& key) const 14 { 15 return (size_t)key.get(); 16 } 17 }; 18 } 19} 20#endif