summaryrefslogtreecommitdiff
path: root/extractor/scorer.h
diff options
context:
space:
mode:
Diffstat (limited to 'extractor/scorer.h')
-rw-r--r--extractor/scorer.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/extractor/scorer.h b/extractor/scorer.h
new file mode 100644
index 00000000..57405a6c
--- /dev/null
+++ b/extractor/scorer.h
@@ -0,0 +1,19 @@
+#ifndef _SCORER_H_
+#define _SCORER_H_
+
+#include <vector>
+
+#include "features/feature.h"
+
+using namespace std;
+
+class Scorer {
+ public:
+ Scorer(const vector<Feature*>& features);
+ ~Scorer();
+
+ private:
+ vector<Feature*> features;
+};
+
+#endif