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

#include "feature.h"

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

  string GetName() const;
};

#endif