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

15 lines
198 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef READ_FILE_H
#define READ_FILE_H
#include <string>
#include <iostream>
#include <fstream>
class ReadFile
{
public:
static bool run(std::string fname, std::string &buffer);
};
#endif