mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
16 lines
222 B
C++
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
|