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

18 lines
270 B
C
Raw Normal View History

2007-08-30 01:12:56 +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