blob: dec78883378f9653700b9ddcf3ec86d5935b1343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _COUNT_SOURCE_TARGET_H_
#define _COUNT_SOURCE_TARGET_H_
#include "feature.h"
namespace extractor {
namespace features {
class CountSourceTarget : public Feature {
public:
double Score(const FeatureContext& context) const;
string GetName() const;
};
} // namespace features
} // namespace extractor
#endif
|