commit 80fa1ca93460c14f077ceea30566ab4c79ec2e55 Author: vaydheesh Date: Wed Jul 31 22:24:40 2019 +0530 rename: LRX -> LRXProc diff --git a/python/lex_tools.i b/python/lex_tools.i index 11d2f97..dd9eda4 100644 --- a/python/lex_tools.i +++ b/python/lex_tools.i @@ -5,13 +5,13 @@ #include -class LRX: public LRXProcessor +class LRXProc: public LRXProcessor { public: /** * Imitates functionality of lrx_proc using file path */ - LRX(char *dictionary_path) + LRXProc(char *dictionary_path) { FILE *dictionary = fopen(dictionary_path, "rb"); load(dictionary); @@ -51,9 +51,9 @@ public: %include -class LRX: public LRXProcessor +class LRXProc: public LRXProcessor { public: - LRX(char *dictionary_path); + LRXProc(char *dictionary_path); void lrx_proc(char arg, char *input_path, char *output_path); };