mosesdecoder/mert/PreProcessFilter.h

32 lines
551 B
C
Raw Normal View History

#ifndef MERT_PREPROCESSFILTER_H_
#define MERT_PREPROCESSFILTER_H_
#include <string>
namespace MosesTuning
{
2013-05-29 21:16:15 +04:00
class ofdstream;
class ifdstream;
/*
* This class runs the filter command in a child process and
* then use this filter to process given sentences.
*/
class PreProcessFilter
{
public:
explicit PreProcessFilter(const std::string& filterCommand);
std::string ProcessSentence(const std::string& sentence);
~PreProcessFilter();
private:
2013-05-29 21:16:15 +04:00
ofdstream* m_toFilter;
ifdstream* m_fromFilter;
};
}
#endif // MERT_PREPROCESSFILTER_H_