Files
Kingsley Chen 0f53692371 Update unit testing examples to use catch2
catch is no longer maintained and all relevant examples should be
updated.
2019-01-08 00:11:06 +08: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