exercism-solutions/cpp/word-count/word_count.h

12 lines
151 B
C++

#pragma once
#include <map>
#include <string>
namespace word_count {
typedef std::map<std::string, int> Words;
Words words(const std::string&);
}