#ifndef __PALINDROME_H__ #define __PALINDROME_H__ #include /** * Trivial class to check if a string is a palindrome. */ class Palindrome { public: bool isPalindrome(const std::string& toCheck); }; #endif