Files
cmake-examples/05-unit-testing/google-test-download/Palindrome.h
2017-09-24 00:36:47 +01: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