日期:2014-05-16 浏览次数:20796 次
#include "HashMapTemp.h"
int main(void)
{
return 0;
}
#ifndef __HASH_MAP_TEMP_H__
#define __HASH_MAP_TEMP_H__
#ifdef WIN32
#include <hash_map>
using namespace std;
using namespace stdext;
#else
#include <ext/hash_map>
using namespace __gnu_cxx;
#endif
template<typename Key, typename Value>
class CHashMapTemp
{
public:
CHashMapTemp()
{
//
}
};
#endif