summaryrefslogtreecommitdiff
path: root/extractor/features/count_source_target.h
blob: a24819447a2c2e73d50baa40e8b52ed432167b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _COUNT_SOURCE_TARGET_H_
#define _COUNT_SOURCE_TARGET_H_

#include "feature.h"

class CountSourceTarget : public Feature {
 public:
  double Score(const FeatureContext& context) const;

  string GetName() const;
};

#endif