Skip to content
Snippets Groups Projects
Commit aa315d51 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

Added method to set option for document reader.

parent fcd7e23b
Branches
No related merge requests found
......@@ -57,4 +57,11 @@ namespace Corpus2 {
return document;
}
void DocumentReader::set_option(const std::string& option)
{
if (option == "autogen_sent_id") {
ccl_reader_->set_option("autogen_sent_id");
}
}
} /* end ns Corpus2 */
......@@ -52,6 +52,13 @@ public:
*/
boost::shared_ptr<Document> read();
/**
* Sets options for readers (relation reader and/or ccl reader).
* Available options:
* - autogen_sent_id -- for automatically generation identifiers of sentences
*/
void set_option(const std::string& option);
private:
/**
* Makes CclReader and RelationReader for given paths to files.
......
......@@ -33,6 +33,8 @@ namespace Corpus2 {
}
boost::shared_ptr<Document> read();
void set_option(const std::string& option);
/* --------------------------------------------------------------------- */
~DocumentReader();
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment