# This file was automatically generated by SWIG (https://www.swig.org). # Version 4.4.0 # # Do not make changes to this file unless you know what you are doing - modify # the SWIG interface file instead. from sys import version_info as _swig_python_version_info # Import the low-level C/C++ module if getattr(globals().get("__spec__"), "parent", None) or __package__ or "." in __name__: from . import _apertium_lex_tools else: import _apertium_lex_tools try: import builtins as __builtin__ except ImportError: import __builtin__ def _swig_repr(self): try: strthis = "proxy of " + self.this.__repr__() except __builtin__.Exception: strthis = "" return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) def _swig_setattr_nondynamic_instance_variable(set): def set_instance_attr(self, name, value): if name == "this": set(self, name, value) elif name == "thisown": self.this.own(value) elif hasattr(self, name) and isinstance(getattr(type(self), name), property): set(self, name, value) else: raise AttributeError("You cannot add instance attributes to %s" % self) return set_instance_attr def _swig_setattr_nondynamic_class_variable(set): def set_class_attr(cls, name, value): if hasattr(cls, name) and not isinstance(getattr(cls, name), property): set(cls, name, value) else: raise AttributeError("You cannot add class attributes to %s" % cls) return set_class_attr def _swig_add_metaclass(metaclass): """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" def wrapper(cls): return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) return wrapper class _SwigNonDynamicMeta(type): """Meta class to enforce nondynamic attributes (no new attributes) for a class""" __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) class LRXProcessor(object): thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") __repr__ = _swig_repr def __init__(self): _apertium_lex_tools.LRXProcessor_swiginit(self, _apertium_lex_tools.new_LRXProcessor()) __swig_destroy__ = _apertium_lex_tools.delete_LRXProcessor def setTraceMode(self, mode): return _apertium_lex_tools.LRXProcessor_setTraceMode(self, mode) def setDebugMode(self, mode): return _apertium_lex_tools.LRXProcessor_setDebugMode(self, mode) def setNullFlush(self, mode): return _apertium_lex_tools.LRXProcessor_setNullFlush(self, mode) def init(self): return _apertium_lex_tools.LRXProcessor_init(self) def load(self, input): return _apertium_lex_tools.LRXProcessor_load(self, input) def process(self, input, output): return _apertium_lex_tools.LRXProcessor_process(self, input, output) # Register LRXProcessor in _apertium_lex_tools: _apertium_lex_tools.LRXProcessor_swigregister(LRXProcessor) cvar = _apertium_lex_tools.cvar LRXProcessor.LRX_PROCESSOR_TAG_SELECT = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_SELECT LRXProcessor.LRX_PROCESSOR_TAG_REMOVE = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_REMOVE LRXProcessor.LRX_PROCESSOR_TAG_SKIP = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_SKIP LRXProcessor.LRX_PROCESSOR_TAG_ANY_CHAR = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_ANY_CHAR LRXProcessor.LRX_PROCESSOR_TAG_ANY_TAG = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_ANY_TAG LRXProcessor.LRX_PROCESSOR_TAG_ANY_UPPER = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_ANY_UPPER LRXProcessor.LRX_PROCESSOR_TAG_ANY_LOWER = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_ANY_LOWER LRXProcessor.LRX_PROCESSOR_TAG_WORD_BOUNDARY = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_WORD_BOUNDARY LRXProcessor.LRX_PROCESSOR_TAG_NULL_BOUNDARY = _apertium_lex_tools.cvar.LRXProcessor_LRX_PROCESSOR_TAG_NULL_BOUNDARY class LtLocale(object): thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") __repr__ = _swig_repr @staticmethod def tryToSetLocale(): return _apertium_lex_tools.LtLocale_tryToSetLocale() def __init__(self): _apertium_lex_tools.LtLocale_swiginit(self, _apertium_lex_tools.new_LtLocale()) __swig_destroy__ = _apertium_lex_tools.delete_LtLocale # Register LtLocale in _apertium_lex_tools: _apertium_lex_tools.LtLocale_swigregister(LtLocale) class LRXProc(LRXProcessor): thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") __repr__ = _swig_repr def __init__(self, dictionary_path): _apertium_lex_tools.LRXProc_swiginit(self, _apertium_lex_tools.new_LRXProc(dictionary_path)) def lrx_proc(self, argc, input_path, output_path): return _apertium_lex_tools.LRXProc_lrx_proc(self, argc, input_path, output_path) __swig_destroy__ = _apertium_lex_tools.delete_LRXProc # Register LRXProc in _apertium_lex_tools: _apertium_lex_tools.LRXProc_swigregister(LRXProc)