diff options
author | Patrick Simianer <p@simianer.de> | 2013-04-26 15:30:44 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2013-04-26 15:30:44 +0200 |
commit | 6c0e5139068b8e92a10445b7e19f4878443ade03 (patch) | |
tree | c091273282a07685c16e90757efa5624632df3dc /decoder/cdec_ff.cc | |
parent | 4665482b24cee2f826832ca6bc8c4a745a92c1c1 (diff) |
added Gesa's alternative source syntax features
Diffstat (limited to 'decoder/cdec_ff.cc')
-rw-r--r-- | decoder/cdec_ff.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/decoder/cdec_ff.cc b/decoder/cdec_ff.cc index d1e326fe..186c4de3 100644 --- a/decoder/cdec_ff.cc +++ b/decoder/cdec_ff.cc @@ -19,6 +19,8 @@ #include "ff_source_path.h" #include "ff_source_syntax.h" #include "ff_source_syntax_p.h" +#include "ff_source_syntax2.h" +#include "ff_source_syntax2_p.h" #include "ff_parse_match.h" #include "ff_register.h" #include "ff_charset.h" @@ -56,6 +58,7 @@ void register_feature_functions() { ff_registry.Register("SoftSyntcticFeatures2", new FFFactory<SoftSyntacticFeatures2>); ff_registry.Register("SourceSyntaxFeatures", new FFFactory<SourceSyntaxFeatures>); //ff_registry.Register("PSourceSyntaxFeatures", new FFFactory<PSourceSyntaxFeatures>); + ff_registry.Register("SourceSyntaxFeatures2", new FFFactory<SourceSyntaxFeatures2>); ff_registry.Register("ParseMatchFeatures", new FFFactory<ParseMatchFeatures>); ff_registry.Register("SourceSpanSizeFeatures", new FFFactory<SourceSpanSizeFeatures>); //ff_registry.Register("PSourceSpanSizeFeatures", new FFFactory<PSourceSpanSizeFeatures>); |