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

17 lines
236 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef REPLACE_H
#define REPLACE_H
#include <string>
class Replace
{
2007-09-08 00:25:30 +02:00
public:
static int run (
std::string& buffer,
const std::string& find,
const std::string& replace,
bool matchCase );
2007-09-07 23:17:30 +02:00
};
#endif