mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
42 lines
711 B
C++
42 lines
711 B
C++
#ifndef MERT_FILE_STREAM_H_
|
|
#define MERT_FILE_STREAM_H_
|
|
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <streambuf>
|
|
#include <string>
|
|
|
|
class inputfilestream : public std::istream
|
|
{
|
|
protected:
|
|
std::streambuf *m_streambuf;
|
|
bool m_is_good;
|
|
|
|
public:
|
|
explicit inputfilestream(const std::string &filePath);
|
|
virtual ~inputfilestream();
|
|
|
|
bool good() const {
|
|
return m_is_good;
|
|
}
|
|
void close();
|
|
};
|
|
|
|
class outputfilestream : public std::ostream
|
|
{
|
|
protected:
|
|
std::streambuf *m_streambuf;
|
|
bool m_is_good;
|
|
|
|
public:
|
|
explicit outputfilestream(const std::string &filePath);
|
|
virtual ~outputfilestream();
|
|
|
|
bool good() const {
|
|
return m_is_good;
|
|
}
|
|
void close();
|
|
};
|
|
|
|
#endif // MERT_FILE_STREAM_H_
|