xml-copy-editor-code/src/casehandler.h

18 lines
274 B
C
Raw Normal View History

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