2007-09-07 23:17:30 +02:00
|
|
|
#ifndef CASEHANDLER_H
|
|
|
|
#define CASEHANDLER_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class CaseHandler
|
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
public:
|
2007-09-07 23:17:30 +02:00
|
|
|
CaseHandler();
|
|
|
|
~CaseHandler();
|
2007-09-08 00:25:30 +02:00
|
|
|
static string lowerCase ( string &s );
|
|
|
|
static void adjustCase ( string &buffer, string &comparison );
|
2007-09-07 23:17:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|