commit 0da01cc80aeb1544308258983f425b5a56fd41b8 Author: vaydheesh Date: Fri Jul 12 01:46:36 2019 +0530 Updated comment diff --git a/apertium/apertium_tagger.cc b/apertium/apertium_tagger.cc index 564b0b5..e726257 100644 --- a/apertium/apertium_tagger.cc +++ b/apertium/apertium_tagger.cc @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program; if not, see . -#include +#include #include "getopt_long.h" #include diff --git a/python/apertium_core.i b/python/apertium_core.i index 7a7c6fa..672eb68 100644 --- a/python/apertium_core.i +++ b/python/apertium_core.i @@ -25,7 +25,7 @@ class tagger: public Apertium::apertium_tagger public: /** * Imitates functionality of apertium-tagger - * tag::tag() passes int and char** to apertium_tagger::apertium_tagger() int&, char**& respectively + * tagger::tagger() passes int and char** to apertium_tagger::apertium_tagger() int&, char**& respectively */ tagger(int argc, char **argv): apertium_tagger(argc, argv){} }; @@ -123,9 +123,6 @@ apertium::postchunk_text(char arg, char *transferfile, char *datafile, char *inp class apertium: public Transfer, public Interchunk, public Postchunk { public: - /** - * Imitates functionality of apertium-core binaries using file path - */ void interchunk_text(char arg, char *transferfile, char *datafile, char *input_path, char *output_path); void pretransfer(char arg, char *input_path, char *output_path); void postchunk_text(char arg, char *transferfile, char *datafile, char *input_path, char *output_path); @@ -135,9 +132,5 @@ public: class tagger: public Apertium::apertium_tagger { public: - /** - * Imitates functionality of apertium-tagger - * tag::tag() passes int and char** to apertium_tagger::apertium_tagger() int&, char**& respectively - */ tagger(int argc, char **argv): apertium_tagger(argc, argv); };