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

#include "feature.h"

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

  string GetName() const;
};

#endif