Files
cmake-examples/05-unit-testing/boost/Palindrome.h
2015-12-01 22:51:53 +00:00

16 lines
222 B
C++

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