Skip to content
Snippets Groups Projects
Commit 56a53217 authored by ilor's avatar ilor
Browse files

add autodoc to some swig wrappers

parent 4060d81d
No related merge requests found
...@@ -39,6 +39,7 @@ namespace Corpus2 { ...@@ -39,6 +39,7 @@ namespace Corpus2 {
return NULL; return NULL;
} }
} }
%feature("autodoc", "1");
static TokenReaderPtr create_path_reader( static TokenReaderPtr create_path_reader(
const std::string& class_id, const std::string& class_id,
const Tagset& tagset, const Tagset& tagset,
...@@ -52,6 +53,7 @@ namespace Corpus2 { ...@@ -52,6 +53,7 @@ namespace Corpus2 {
return NULL; return NULL;
} }
} }
%feature("autodoc", "1");
static TokenReaderPtr create_stream_reader( static TokenReaderPtr create_stream_reader(
const std::string& class_id, const std::string& class_id,
const Tagset& tagset, const Tagset& tagset,
...@@ -75,6 +77,7 @@ namespace Corpus2 { ...@@ -75,6 +77,7 @@ namespace Corpus2 {
static std::vector<std::string> available_reader_types_help(); static std::vector<std::string> available_reader_types_help();
}; };
%feature("autodoc", "1");
std::vector<boost::shared_ptr<Chunk> > read_chunks_from_utf8_string( std::vector<boost::shared_ptr<Chunk> > read_chunks_from_utf8_string(
const std::string& data, const Tagset& tagset, const std::string& format); const std::string& data, const Tagset& tagset, const std::string& format);
......
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