word count exercise, initial commit

This commit is contained in:
Dmitry Kokorin 2016-02-18 23:41:40 +03:00
parent c252a1a93d
commit 59060755a5
5 changed files with 261 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#pragma once
#include <map>
#include <string>
namespace word_count {
typedef std::map<std::string, size_t> Words;
Words words(const std::string&);
}