9 lines
216 B
C++
9 lines
216 B
C++
#ifndef MUDUO_EXAMPLES_WORDCOUNT_HASH_H
|
|
#define MUDUO_EXAMPLES_WORDCOUNT_HASH_H
|
|
|
|
#include <unordered_map>
|
|
|
|
typedef std::unordered_map<muduo::string, int64_t> WordCountMap;
|
|
|
|
#endif // MUDUO_EXAMPLES_WORDCOUNT_HASH_H
|