diff options
author | Paul Baltescu <pauldb89@gmail.com> | 2013-03-06 15:25:54 +0000 |
---|---|---|
committer | Paul Baltescu <pauldb89@gmail.com> | 2013-03-06 15:25:54 +0000 |
commit | ab5367aa2c42126a04034cd7d3cec125bca399ca (patch) | |
tree | 9698d9d23ed7618554c61624f8899eb8ba9b3b09 /extractor/rule.h | |
parent | 245e705ac7b6fca80a7aa4898f5467053ec2c585 (diff) |
Namespace for extractor.
Diffstat (limited to 'extractor/rule.h')
-rw-r--r-- | extractor/rule.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extractor/rule.h b/extractor/rule.h index 64ff8794..b4d45fc1 100644 --- a/extractor/rule.h +++ b/extractor/rule.h @@ -7,6 +7,8 @@ using namespace std; +namespace extractor { + struct Rule { Rule(const Phrase& source_phrase, const Phrase& target_phrase, const vector<double>& scores, const vector<pair<int, int> >& alignment); @@ -17,4 +19,6 @@ struct Rule { vector<pair<int, int> > alignment; }; +} // namespace extractor + #endif |