Files
cmake-examples/05-unit-testing/catch-vendored/Palindrome.h
2017-09-24 17:16:29 +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