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

18 lines
270 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
{
public:
CaseHandler();
~CaseHandler();
static string lowerCase(string &s);
static void adjustCase(string &buffer, string &comparison);
};
#endif