#if !defined(ISOGRAM_H) #define ISOGRAM_H #include <string> namespace isogram { bool is_isogram(const std::string phrase); } // namespace isogram #endif // ISOGRAM_H