[installation] Change to nightly
This commit is contained in:
@ -1,13 +1,10 @@
|
||||
# This file was automatically generated by SWIG (http://www.swig.org).
|
||||
# Version 4.0.2
|
||||
# This file was automatically generated by SWIG (https://www.swig.org).
|
||||
# Version 4.3.1
|
||||
#
|
||||
# Do not make changes to this file unless you know what you are doing--modify
|
||||
# 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
|
||||
if _swig_python_version_info < (2, 7, 0):
|
||||
raise RuntimeError("Python 2.7 or later required")
|
||||
|
||||
# Import the low-level C/C++ module
|
||||
if __package__ or "." in __name__:
|
||||
from . import _io
|
||||
@ -29,10 +26,10 @@ def _swig_repr(self):
|
||||
|
||||
def _swig_setattr_nondynamic_instance_variable(set):
|
||||
def set_instance_attr(self, name, value):
|
||||
if name == "thisown":
|
||||
self.this.own(value)
|
||||
elif name == "this":
|
||||
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:
|
||||
@ -123,7 +120,6 @@ class SwigPyIterator(object):
|
||||
|
||||
# Register SwigPyIterator in _io:
|
||||
_io.SwigPyIterator_swigregister(SwigPyIterator)
|
||||
|
||||
class ios_base(object):
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
|
||||
@ -208,12 +204,6 @@ ios_base.beg = _io.cvar.ios_base_beg
|
||||
ios_base.cur = _io.cvar.ios_base_cur
|
||||
ios_base.end = _io.cvar.ios_base_end
|
||||
|
||||
def ios_base_sync_with_stdio(__sync=True):
|
||||
return _io.ios_base_sync_with_stdio(__sync)
|
||||
|
||||
def ios_base_xalloc():
|
||||
return _io.ios_base_xalloc()
|
||||
|
||||
class ios(ios_base):
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
__repr__ = _swig_repr
|
||||
@ -269,7 +259,6 @@ class ios(ios_base):
|
||||
|
||||
# Register ios in _io:
|
||||
_io.ios_swigregister(ios)
|
||||
|
||||
import seiscomp.math
|
||||
import seiscomp.core
|
||||
class DatabaseInterface(seiscomp.core.BaseObject):
|
||||
@ -314,6 +303,22 @@ class DatabaseInterface(seiscomp.core.BaseObject):
|
||||
ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> DatabaseInterface
|
||||
"""
|
||||
return _io.DatabaseInterface_ConstCast(*args)
|
||||
MySQL = _io.DatabaseInterface_MySQL
|
||||
|
||||
PostgreSQL = _io.DatabaseInterface_PostgreSQL
|
||||
|
||||
SQLite3 = _io.DatabaseInterface_SQLite3
|
||||
|
||||
MSSQL = _io.DatabaseInterface_MSSQL
|
||||
|
||||
Oracle = _io.DatabaseInterface_Oracle
|
||||
|
||||
ODBC = _io.DatabaseInterface_ODBC
|
||||
|
||||
Unknown = _io.DatabaseInterface_Unknown
|
||||
|
||||
EBackendQuantity = _io.DatabaseInterface_EBackendQuantity
|
||||
|
||||
__swig_destroy__ = _io.delete_DatabaseInterface
|
||||
|
||||
@staticmethod
|
||||
@ -326,6 +331,10 @@ class DatabaseInterface(seiscomp.core.BaseObject):
|
||||
r"""Open(char const * uri) -> DatabaseInterface"""
|
||||
return _io.DatabaseInterface_Open(uri)
|
||||
|
||||
def backend(self):
|
||||
r"""backend(DatabaseInterface self) -> Seiscomp::IO::DatabaseInterface::Backend"""
|
||||
return _io.DatabaseInterface_backend(self)
|
||||
|
||||
def connect(self, connection):
|
||||
r"""connect(DatabaseInterface self, char const * connection) -> bool"""
|
||||
return _io.DatabaseInterface_connect(self, connection)
|
||||
@ -424,38 +433,8 @@ class DatabaseInterface(seiscomp.core.BaseObject):
|
||||
|
||||
# Register DatabaseInterface in _io:
|
||||
_io.DatabaseInterface_swigregister(DatabaseInterface)
|
||||
|
||||
def DatabaseInterface_ClassName():
|
||||
r"""DatabaseInterface_ClassName() -> char const *"""
|
||||
return _io.DatabaseInterface_ClassName()
|
||||
|
||||
def DatabaseInterface_TypeInfo():
|
||||
r"""DatabaseInterface_TypeInfo() -> RTTI"""
|
||||
return _io.DatabaseInterface_TypeInfo()
|
||||
|
||||
def DatabaseInterface_Cast(*args):
|
||||
r"""
|
||||
DatabaseInterface_Cast(BaseObject o) -> DatabaseInterface
|
||||
DatabaseInterface_Cast(Seiscomp::Core::BaseObjectPtr o) -> DatabaseInterface
|
||||
"""
|
||||
return _io.DatabaseInterface_Cast(*args)
|
||||
|
||||
def DatabaseInterface_ConstCast(*args):
|
||||
r"""
|
||||
DatabaseInterface_ConstCast(BaseObject o) -> DatabaseInterface
|
||||
DatabaseInterface_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> DatabaseInterface
|
||||
"""
|
||||
return _io.DatabaseInterface_ConstCast(*args)
|
||||
DatabaseInterface.INVALID_OID = _io.cvar.DatabaseInterface_INVALID_OID
|
||||
|
||||
def DatabaseInterface_Create(service):
|
||||
r"""DatabaseInterface_Create(char const * service) -> DatabaseInterface"""
|
||||
return _io.DatabaseInterface_Create(service)
|
||||
|
||||
def DatabaseInterface_Open(uri):
|
||||
r"""DatabaseInterface_Open(char const * uri) -> DatabaseInterface"""
|
||||
return _io.DatabaseInterface_Open(uri)
|
||||
|
||||
class GFSource(seiscomp.math.CoordD):
|
||||
r"""Proxy of C++ Seiscomp::IO::GFSource class."""
|
||||
|
||||
@ -470,7 +449,6 @@ class GFSource(seiscomp.math.CoordD):
|
||||
|
||||
# Register GFSource in _io:
|
||||
_io.GFSource_swigregister(GFSource)
|
||||
|
||||
class GFReceiver(seiscomp.math.CoordD):
|
||||
r"""Proxy of C++ Seiscomp::IO::GFReceiver class."""
|
||||
|
||||
@ -485,7 +463,6 @@ class GFReceiver(seiscomp.math.CoordD):
|
||||
|
||||
# Register GFReceiver in _io:
|
||||
_io.GFReceiver_swigregister(GFReceiver)
|
||||
|
||||
class GFArchive(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::IO::GFArchive class."""
|
||||
|
||||
@ -562,7 +539,7 @@ class GFArchive(seiscomp.core.BaseObject):
|
||||
return _io.GFArchive_get(self)
|
||||
|
||||
def getTravelTime(self, phase, model, source, receiver):
|
||||
r"""getTravelTime(GFArchive self, string phase, string model, GFSource source, GFReceiver receiver) -> Seiscomp::Core::Optional< double >::Impl"""
|
||||
r"""getTravelTime(GFArchive self, string phase, string model, GFSource source, GFReceiver receiver) -> Seiscomp::Core::Optional< double >"""
|
||||
return _io.GFArchive_getTravelTime(self, phase, model, source, receiver)
|
||||
|
||||
def hasLocalTravelTimes(self):
|
||||
@ -581,37 +558,6 @@ class GFArchive(seiscomp.core.BaseObject):
|
||||
|
||||
# Register GFArchive in _io:
|
||||
_io.GFArchive_swigregister(GFArchive)
|
||||
|
||||
def GFArchive_ClassName():
|
||||
r"""GFArchive_ClassName() -> char const *"""
|
||||
return _io.GFArchive_ClassName()
|
||||
|
||||
def GFArchive_TypeInfo():
|
||||
r"""GFArchive_TypeInfo() -> RTTI"""
|
||||
return _io.GFArchive_TypeInfo()
|
||||
|
||||
def GFArchive_Cast(*args):
|
||||
r"""
|
||||
GFArchive_Cast(BaseObject o) -> GFArchive
|
||||
GFArchive_Cast(Seiscomp::Core::BaseObjectPtr o) -> GFArchive
|
||||
"""
|
||||
return _io.GFArchive_Cast(*args)
|
||||
|
||||
def GFArchive_ConstCast(*args):
|
||||
r"""
|
||||
GFArchive_ConstCast(BaseObject o) -> GFArchive
|
||||
GFArchive_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> GFArchive
|
||||
"""
|
||||
return _io.GFArchive_ConstCast(*args)
|
||||
|
||||
def GFArchive_Create(service):
|
||||
r"""GFArchive_Create(char const * service) -> GFArchive"""
|
||||
return _io.GFArchive_Create(service)
|
||||
|
||||
def GFArchive_Open(url):
|
||||
r"""GFArchive_Open(char const * url) -> GFArchive"""
|
||||
return _io.GFArchive_Open(url)
|
||||
|
||||
class RecordStream(object):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordStream class."""
|
||||
|
||||
@ -667,16 +613,16 @@ class RecordStream(object):
|
||||
def addStream(self, *args):
|
||||
r"""
|
||||
addStream(RecordStream self, string networkCode, string stationCode, string locationCode, string channelCode) -> bool
|
||||
addStream(RecordStream self, string networkCode, string stationCode, string locationCode, string channelCode, Time startTime, Time endTime) -> bool
|
||||
addStream(RecordStream self, string networkCode, string stationCode, string locationCode, string channelCode, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool
|
||||
"""
|
||||
return _io.RecordStream_addStream(self, *args)
|
||||
|
||||
def setStartTime(self, startTime):
|
||||
r"""setStartTime(RecordStream self, Time startTime) -> bool"""
|
||||
r"""setStartTime(RecordStream self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime) -> bool"""
|
||||
return _io.RecordStream_setStartTime(self, startTime)
|
||||
|
||||
def setEndTime(self, endTime):
|
||||
r"""setEndTime(RecordStream self, Time endTime) -> bool"""
|
||||
r"""setEndTime(RecordStream self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool"""
|
||||
return _io.RecordStream_setEndTime(self, endTime)
|
||||
|
||||
def setTimeWindow(self, timeWindow):
|
||||
@ -715,37 +661,6 @@ class RecordStream(object):
|
||||
|
||||
# Register RecordStream in _io:
|
||||
_io.RecordStream_swigregister(RecordStream)
|
||||
|
||||
def RecordStream_ClassName():
|
||||
r"""RecordStream_ClassName() -> char const *"""
|
||||
return _io.RecordStream_ClassName()
|
||||
|
||||
def RecordStream_TypeInfo():
|
||||
r"""RecordStream_TypeInfo() -> RTTI"""
|
||||
return _io.RecordStream_TypeInfo()
|
||||
|
||||
def RecordStream_Cast(*args):
|
||||
r"""
|
||||
RecordStream_Cast(BaseObject o) -> RecordStream
|
||||
RecordStream_Cast(Seiscomp::Core::BaseObjectPtr o) -> RecordStream
|
||||
"""
|
||||
return _io.RecordStream_Cast(*args)
|
||||
|
||||
def RecordStream_ConstCast(*args):
|
||||
r"""
|
||||
RecordStream_ConstCast(BaseObject o) -> RecordStream
|
||||
RecordStream_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> RecordStream
|
||||
"""
|
||||
return _io.RecordStream_ConstCast(*args)
|
||||
|
||||
def RecordStream_Create(service):
|
||||
r"""RecordStream_Create(char const * service) -> RecordStream"""
|
||||
return _io.RecordStream_Create(service)
|
||||
|
||||
def RecordStream_Open(url):
|
||||
r"""RecordStream_Open(char const * url) -> RecordStream"""
|
||||
return _io.RecordStream_Open(url)
|
||||
|
||||
class RecordIterator(object):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordIterator class."""
|
||||
|
||||
@ -782,7 +697,6 @@ class RecordIterator(object):
|
||||
|
||||
# Register RecordIterator in _io:
|
||||
_io.RecordIterator_swigregister(RecordIterator)
|
||||
|
||||
class RecordInput(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordInput class."""
|
||||
|
||||
@ -826,7 +740,6 @@ class RecordInput(seiscomp.core.BaseObject):
|
||||
|
||||
# Register RecordInput in _io:
|
||||
_io.RecordInput_swigregister(RecordInput)
|
||||
|
||||
class RecordFilterInterface(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordFilterInterface class."""
|
||||
|
||||
@ -855,7 +768,6 @@ class RecordFilterInterface(seiscomp.core.BaseObject):
|
||||
|
||||
# Register RecordFilterInterface in _io:
|
||||
_io.RecordFilterInterface_swigregister(RecordFilterInterface)
|
||||
|
||||
class PipeFilter(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::PipeFilter class."""
|
||||
|
||||
@ -885,7 +797,6 @@ class PipeFilter(RecordFilterInterface):
|
||||
|
||||
# Register PipeFilter in _io:
|
||||
_io.PipeFilter_swigregister(PipeFilter)
|
||||
|
||||
class Cropper(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::Cropper class."""
|
||||
|
||||
@ -927,7 +838,6 @@ class Cropper(RecordFilterInterface):
|
||||
|
||||
# Register Cropper in _io:
|
||||
_io.Cropper_swigregister(Cropper)
|
||||
|
||||
class RecordDemuxFilter(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordDemuxFilter class."""
|
||||
|
||||
@ -961,7 +871,61 @@ class RecordDemuxFilter(RecordFilterInterface):
|
||||
|
||||
# Register RecordDemuxFilter in _io:
|
||||
_io.RecordDemuxFilter_swigregister(RecordDemuxFilter)
|
||||
class MSeedEncoder(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::MSeedEncoder class."""
|
||||
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
__repr__ = _swig_repr
|
||||
|
||||
def __init__(self):
|
||||
r"""__init__(MSeedEncoder self) -> MSeedEncoder"""
|
||||
_io.MSeedEncoder_swiginit(self, _io.new_MSeedEncoder())
|
||||
|
||||
def setRecordSize(self, size):
|
||||
r"""setRecordSize(MSeedEncoder self, int size) -> bool"""
|
||||
return _io.MSeedEncoder_setRecordSize(self, size)
|
||||
|
||||
def setIdentity(self):
|
||||
r"""setIdentity(MSeedEncoder self)"""
|
||||
return _io.MSeedEncoder_setIdentity(self)
|
||||
|
||||
def setSteim1(self):
|
||||
r"""setSteim1(MSeedEncoder self)"""
|
||||
return _io.MSeedEncoder_setSteim1(self)
|
||||
|
||||
def setSteim2(self):
|
||||
r"""setSteim2(MSeedEncoder self)"""
|
||||
return _io.MSeedEncoder_setSteim2(self)
|
||||
|
||||
def allowFloatingPointCompression(self, f):
|
||||
r"""allowFloatingPointCompression(MSeedEncoder self, bool f)"""
|
||||
return _io.MSeedEncoder_allowFloatingPointCompression(self, f)
|
||||
|
||||
def feed(self, rec):
|
||||
r"""feed(MSeedEncoder self, Record rec) -> Record"""
|
||||
return _io.MSeedEncoder_feed(self, rec)
|
||||
|
||||
def flush(self):
|
||||
r"""flush(MSeedEncoder self) -> Record"""
|
||||
return _io.MSeedEncoder_flush(self)
|
||||
|
||||
def reset(self):
|
||||
r"""reset(MSeedEncoder self)"""
|
||||
return _io.MSeedEncoder_reset(self)
|
||||
|
||||
def clone(self):
|
||||
r"""clone(MSeedEncoder self) -> RecordFilterInterface"""
|
||||
return _io.MSeedEncoder_clone(self)
|
||||
Identity = _io.MSeedEncoder_Identity
|
||||
|
||||
Steim1 = _io.MSeedEncoder_Steim1
|
||||
|
||||
Steim2 = _io.MSeedEncoder_Steim2
|
||||
|
||||
__swig_destroy__ = _io.delete_MSeedEncoder
|
||||
|
||||
# Register MSeedEncoder in _io:
|
||||
_io.MSeedEncoder_swigregister(MSeedEncoder)
|
||||
class RecordResamplerBase(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordResamplerBase class."""
|
||||
|
||||
@ -981,7 +945,6 @@ class RecordResamplerBase(RecordFilterInterface):
|
||||
|
||||
# Register RecordResamplerBase in _io:
|
||||
_io.RecordResamplerBase_swigregister(RecordResamplerBase)
|
||||
|
||||
class RecordStreamException(seiscomp.core.StreamException):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordStreamException class."""
|
||||
|
||||
@ -998,7 +961,6 @@ class RecordStreamException(seiscomp.core.StreamException):
|
||||
|
||||
# Register RecordStreamException in _io:
|
||||
_io.RecordStreamException_swigregister(RecordStreamException)
|
||||
|
||||
class RecordStreamTimeout(RecordStreamException):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordStreamTimeout class."""
|
||||
|
||||
@ -1015,7 +977,6 @@ class RecordStreamTimeout(RecordStreamException):
|
||||
|
||||
# Register RecordStreamTimeout in _io:
|
||||
_io.RecordStreamTimeout_swigregister(RecordStreamTimeout)
|
||||
|
||||
class Importer(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::IO::Importer class."""
|
||||
|
||||
@ -1078,33 +1039,6 @@ class Importer(seiscomp.core.BaseObject):
|
||||
|
||||
# Register Importer in _io:
|
||||
_io.Importer_swigregister(Importer)
|
||||
|
||||
def Importer_ClassName():
|
||||
r"""Importer_ClassName() -> char const *"""
|
||||
return _io.Importer_ClassName()
|
||||
|
||||
def Importer_TypeInfo():
|
||||
r"""Importer_TypeInfo() -> RTTI"""
|
||||
return _io.Importer_TypeInfo()
|
||||
|
||||
def Importer_Cast(*args):
|
||||
r"""
|
||||
Importer_Cast(BaseObject o) -> Importer
|
||||
Importer_Cast(Seiscomp::Core::BaseObjectPtr o) -> Importer
|
||||
"""
|
||||
return _io.Importer_Cast(*args)
|
||||
|
||||
def Importer_ConstCast(*args):
|
||||
r"""
|
||||
Importer_ConstCast(BaseObject o) -> Importer
|
||||
Importer_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> Importer
|
||||
"""
|
||||
return _io.Importer_ConstCast(*args)
|
||||
|
||||
def Importer_Create(type):
|
||||
r"""Importer_Create(char const * type) -> Importer"""
|
||||
return _io.Importer_Create(type)
|
||||
|
||||
class ExportSink(object):
|
||||
r"""Proxy of C++ Seiscomp::IO::ExportSink class."""
|
||||
|
||||
@ -1130,7 +1064,6 @@ class ExportSink(object):
|
||||
|
||||
# Register ExportSink in _io:
|
||||
_io.ExportSink_swigregister(ExportSink)
|
||||
|
||||
class Exporter(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::IO::Exporter class."""
|
||||
|
||||
@ -1201,33 +1134,6 @@ class Exporter(seiscomp.core.BaseObject):
|
||||
|
||||
# Register Exporter in _io:
|
||||
_io.Exporter_swigregister(Exporter)
|
||||
|
||||
def Exporter_ClassName():
|
||||
r"""Exporter_ClassName() -> char const *"""
|
||||
return _io.Exporter_ClassName()
|
||||
|
||||
def Exporter_TypeInfo():
|
||||
r"""Exporter_TypeInfo() -> RTTI"""
|
||||
return _io.Exporter_TypeInfo()
|
||||
|
||||
def Exporter_Cast(*args):
|
||||
r"""
|
||||
Exporter_Cast(BaseObject o) -> Exporter
|
||||
Exporter_Cast(Seiscomp::Core::BaseObjectPtr o) -> Exporter
|
||||
"""
|
||||
return _io.Exporter_Cast(*args)
|
||||
|
||||
def Exporter_ConstCast(*args):
|
||||
r"""
|
||||
Exporter_ConstCast(BaseObject o) -> Exporter
|
||||
Exporter_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> Exporter
|
||||
"""
|
||||
return _io.Exporter_ConstCast(*args)
|
||||
|
||||
def Exporter_Create(type):
|
||||
r"""Exporter_Create(char const * type) -> Exporter"""
|
||||
return _io.Exporter_Create(type)
|
||||
|
||||
class XMLArchive(seiscomp.core.GenericArchive):
|
||||
r"""Proxy of C++ Seiscomp::IO::XMLArchive class."""
|
||||
|
||||
@ -1292,6 +1198,10 @@ class XMLArchive(seiscomp.core.GenericArchive):
|
||||
r"""setRootNamespace(XMLArchive self, string name, string uri)"""
|
||||
return _io.XMLArchive_setRootNamespace(self, name, uri)
|
||||
|
||||
def setListDelimiter(self, delimiter):
|
||||
r"""setListDelimiter(XMLArchive self, char delimiter)"""
|
||||
return _io.XMLArchive_setListDelimiter(self, delimiter)
|
||||
|
||||
def read(self, *args):
|
||||
r"""
|
||||
read(XMLArchive self, std::int8_t & value)
|
||||
@ -1346,7 +1256,6 @@ class XMLArchive(seiscomp.core.GenericArchive):
|
||||
|
||||
# Register XMLArchive in _io:
|
||||
_io.XMLArchive_swigregister(XMLArchive)
|
||||
|
||||
class BinaryArchive(seiscomp.core.GenericArchive):
|
||||
r"""Proxy of C++ Seiscomp::IO::BinaryArchive class."""
|
||||
|
||||
@ -1433,7 +1342,6 @@ class BinaryArchive(seiscomp.core.GenericArchive):
|
||||
|
||||
# Register BinaryArchive in _io:
|
||||
_io.BinaryArchive_swigregister(BinaryArchive)
|
||||
|
||||
class VBinaryArchive(BinaryArchive):
|
||||
r"""Proxy of C++ Seiscomp::IO::VBinaryArchive class."""
|
||||
|
||||
@ -1476,7 +1384,6 @@ class VBinaryArchive(BinaryArchive):
|
||||
|
||||
# Register VBinaryArchive in _io:
|
||||
_io.VBinaryArchive_swigregister(VBinaryArchive)
|
||||
|
||||
class LibmseedException(seiscomp.core.StreamException):
|
||||
r"""Proxy of C++ Seiscomp::IO::LibmseedException class."""
|
||||
|
||||
@ -1493,7 +1400,6 @@ class LibmseedException(seiscomp.core.StreamException):
|
||||
|
||||
# Register LibmseedException in _io:
|
||||
_io.LibmseedException_swigregister(LibmseedException)
|
||||
|
||||
class MSeedRecord(seiscomp.core.Record):
|
||||
r"""Proxy of C++ Seiscomp::IO::MSeedRecord class."""
|
||||
|
||||
@ -1662,29 +1568,6 @@ class MSeedRecord(seiscomp.core.Record):
|
||||
|
||||
# Register MSeedRecord in _io:
|
||||
_io.MSeedRecord_swigregister(MSeedRecord)
|
||||
|
||||
def MSeedRecord_ClassName():
|
||||
r"""MSeedRecord_ClassName() -> char const *"""
|
||||
return _io.MSeedRecord_ClassName()
|
||||
|
||||
def MSeedRecord_TypeInfo():
|
||||
r"""MSeedRecord_TypeInfo() -> RTTI"""
|
||||
return _io.MSeedRecord_TypeInfo()
|
||||
|
||||
def MSeedRecord_Cast(*args):
|
||||
r"""
|
||||
MSeedRecord_Cast(BaseObject o) -> MSeedRecord
|
||||
MSeedRecord_Cast(Seiscomp::Core::BaseObjectPtr o) -> MSeedRecord
|
||||
"""
|
||||
return _io.MSeedRecord_Cast(*args)
|
||||
|
||||
def MSeedRecord_ConstCast(*args):
|
||||
r"""
|
||||
MSeedRecord_ConstCast(BaseObject o) -> MSeedRecord
|
||||
MSeedRecord_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> MSeedRecord
|
||||
"""
|
||||
return _io.MSeedRecord_ConstCast(*args)
|
||||
|
||||
class FileRecordStream(RecordStream):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::File class."""
|
||||
|
||||
@ -1713,16 +1596,16 @@ class FileRecordStream(RecordStream):
|
||||
def addStream(self, *args):
|
||||
r"""
|
||||
addStream(FileRecordStream self, string networkCode, string stationCode, string locationCode, string channelCode) -> bool
|
||||
addStream(FileRecordStream self, string networkCode, string stationCode, string locationCode, string channelCode, Time startTime, Time endTime) -> bool
|
||||
addStream(FileRecordStream self, string networkCode, string stationCode, string locationCode, string channelCode, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool
|
||||
"""
|
||||
return _io.FileRecordStream_addStream(self, *args)
|
||||
|
||||
def setStartTime(self, startTime):
|
||||
r"""setStartTime(FileRecordStream self, Time startTime) -> bool"""
|
||||
r"""setStartTime(FileRecordStream self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime) -> bool"""
|
||||
return _io.FileRecordStream_setStartTime(self, startTime)
|
||||
|
||||
def setEndTime(self, endTime):
|
||||
r"""setEndTime(FileRecordStream self, Time endTime) -> bool"""
|
||||
r"""setEndTime(FileRecordStream self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool"""
|
||||
return _io.FileRecordStream_setEndTime(self, endTime)
|
||||
|
||||
def close(self):
|
||||
@ -1754,7 +1637,6 @@ class FileRecordStream(RecordStream):
|
||||
|
||||
# Register FileRecordStream in _io:
|
||||
_io.FileRecordStream_swigregister(FileRecordStream)
|
||||
|
||||
class SeedlinkException(RecordStreamException):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::SeedlinkException class."""
|
||||
|
||||
@ -1771,7 +1653,6 @@ class SeedlinkException(RecordStreamException):
|
||||
|
||||
# Register SeedlinkException in _io:
|
||||
_io.SeedlinkException_swigregister(SeedlinkException)
|
||||
|
||||
class SeedlinkCommandException(SeedlinkException):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::SeedlinkCommandException class."""
|
||||
|
||||
@ -1788,7 +1669,6 @@ class SeedlinkCommandException(SeedlinkException):
|
||||
|
||||
# Register SeedlinkCommandException in _io:
|
||||
_io.SeedlinkCommandException_swigregister(SeedlinkCommandException)
|
||||
|
||||
class SLStreamIdx(object):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::SLStreamIdx class."""
|
||||
|
||||
@ -1799,7 +1679,7 @@ class SLStreamIdx(object):
|
||||
r"""
|
||||
__init__(SLStreamIdx self) -> SLStreamIdx
|
||||
__init__(SLStreamIdx self, string net, string sta, string loc, string cha) -> SLStreamIdx
|
||||
__init__(SLStreamIdx self, string net, string sta, string loc, string cha, Time stime, Time etime) -> SLStreamIdx
|
||||
__init__(SLStreamIdx self, string net, string sta, string loc, string cha, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & stime, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & etime) -> SLStreamIdx
|
||||
"""
|
||||
_io.SLStreamIdx_swiginit(self, _io.new_SLStreamIdx(*args))
|
||||
|
||||
@ -1832,25 +1712,24 @@ class SLStreamIdx(object):
|
||||
return _io.SLStreamIdx_selector(self)
|
||||
|
||||
def startTime(self):
|
||||
r"""startTime(SLStreamIdx self) -> Time"""
|
||||
r"""startTime(SLStreamIdx self) -> Seiscomp::Core::Optional< Seiscomp::Core::Time > const &"""
|
||||
return _io.SLStreamIdx_startTime(self)
|
||||
|
||||
def endTime(self):
|
||||
r"""endTime(SLStreamIdx self) -> Time"""
|
||||
r"""endTime(SLStreamIdx self) -> Seiscomp::Core::Optional< Seiscomp::Core::Time > const &"""
|
||||
return _io.SLStreamIdx_endTime(self)
|
||||
|
||||
def timestamp(self):
|
||||
r"""timestamp(SLStreamIdx self) -> Time"""
|
||||
r"""timestamp(SLStreamIdx self) -> Seiscomp::Core::Optional< Seiscomp::Core::Time > const &"""
|
||||
return _io.SLStreamIdx_timestamp(self)
|
||||
|
||||
def setTimestamp(self, rectime):
|
||||
r"""setTimestamp(SLStreamIdx self, Time rectime)"""
|
||||
r"""setTimestamp(SLStreamIdx self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & rectime)"""
|
||||
return _io.SLStreamIdx_setTimestamp(self, rectime)
|
||||
__swig_destroy__ = _io.delete_SLStreamIdx
|
||||
|
||||
# Register SLStreamIdx in _io:
|
||||
_io.SLStreamIdx_swigregister(SLStreamIdx)
|
||||
|
||||
class SLConnection(RecordStream):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::SLConnection class."""
|
||||
|
||||
@ -1910,16 +1789,16 @@ class SLConnection(RecordStream):
|
||||
def addStream(self, *args):
|
||||
r"""
|
||||
addStream(SLConnection self, string networkCode, string stationCode, string locationCode, string channelCode) -> bool
|
||||
addStream(SLConnection self, string networkCode, string stationCode, string locationCode, string channelCode, Time startTime, Time endTime) -> bool
|
||||
addStream(SLConnection self, string networkCode, string stationCode, string locationCode, string channelCode, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool
|
||||
"""
|
||||
return _io.SLConnection_addStream(self, *args)
|
||||
|
||||
def setStartTime(self, startTime):
|
||||
r"""setStartTime(SLConnection self, Time startTime) -> bool"""
|
||||
r"""setStartTime(SLConnection self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime) -> bool"""
|
||||
return _io.SLConnection_setStartTime(self, startTime)
|
||||
|
||||
def setEndTime(self, endTime):
|
||||
r"""setEndTime(SLConnection self, Time endTime) -> bool"""
|
||||
r"""setEndTime(SLConnection self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool"""
|
||||
return _io.SLConnection_setEndTime(self, endTime)
|
||||
|
||||
def setTimeout(self, seconds):
|
||||
@ -1930,197 +1809,8 @@ class SLConnection(RecordStream):
|
||||
r"""close(SLConnection self)"""
|
||||
return _io.SLConnection_close(self)
|
||||
|
||||
def next(self):
|
||||
r"""next(SLConnection self) -> Record"""
|
||||
return _io.SLConnection_next(self)
|
||||
|
||||
def clear(self):
|
||||
r"""clear(SLConnection self) -> bool"""
|
||||
return _io.SLConnection_clear(self)
|
||||
|
||||
def reconnect(self):
|
||||
r"""reconnect(SLConnection self) -> bool"""
|
||||
return _io.SLConnection_reconnect(self)
|
||||
|
||||
# Register SLConnection in _io:
|
||||
_io.SLConnection_swigregister(SLConnection)
|
||||
|
||||
def SLConnection_ClassName():
|
||||
r"""SLConnection_ClassName() -> char const *"""
|
||||
return _io.SLConnection_ClassName()
|
||||
|
||||
def SLConnection_TypeInfo():
|
||||
r"""SLConnection_TypeInfo() -> RTTI"""
|
||||
return _io.SLConnection_TypeInfo()
|
||||
|
||||
def SLConnection_Cast(*args):
|
||||
r"""
|
||||
SLConnection_Cast(BaseObject o) -> SLConnection
|
||||
SLConnection_Cast(Seiscomp::Core::BaseObjectPtr o) -> SLConnection
|
||||
"""
|
||||
return _io.SLConnection_Cast(*args)
|
||||
|
||||
def SLConnection_ConstCast(*args):
|
||||
r"""
|
||||
SLConnection_ConstCast(BaseObject o) -> SLConnection
|
||||
SLConnection_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> SLConnection
|
||||
"""
|
||||
return _io.SLConnection_ConstCast(*args)
|
||||
|
||||
class ArclinkException(RecordStreamException):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::Arclink::_private::ArclinkException class."""
|
||||
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
__repr__ = _swig_repr
|
||||
|
||||
def __init__(self, *args):
|
||||
r"""
|
||||
__init__(ArclinkException self) -> ArclinkException
|
||||
__init__(ArclinkException self, string what) -> ArclinkException
|
||||
"""
|
||||
_io.ArclinkException_swiginit(self, _io.new_ArclinkException(*args))
|
||||
__swig_destroy__ = _io.delete_ArclinkException
|
||||
|
||||
# Register ArclinkException in _io:
|
||||
_io.ArclinkException_swigregister(ArclinkException)
|
||||
|
||||
class ArclinkCommandException(ArclinkException):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::Arclink::_private::ArclinkCommandException class."""
|
||||
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
__repr__ = _swig_repr
|
||||
|
||||
def __init__(self, *args):
|
||||
r"""
|
||||
__init__(ArclinkCommandException self) -> ArclinkCommandException
|
||||
__init__(ArclinkCommandException self, string what) -> ArclinkCommandException
|
||||
"""
|
||||
_io.ArclinkCommandException_swiginit(self, _io.new_ArclinkCommandException(*args))
|
||||
__swig_destroy__ = _io.delete_ArclinkCommandException
|
||||
|
||||
# Register ArclinkCommandException in _io:
|
||||
_io.ArclinkCommandException_swigregister(ArclinkCommandException)
|
||||
|
||||
class ArclinkConnection(RecordStream):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::Arclink::_private::ArclinkConnection class."""
|
||||
|
||||
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
||||
__repr__ = _swig_repr
|
||||
|
||||
@staticmethod
|
||||
def ClassName():
|
||||
r"""ClassName() -> char const *"""
|
||||
return _io.ArclinkConnection_ClassName()
|
||||
|
||||
@staticmethod
|
||||
def TypeInfo():
|
||||
r"""TypeInfo() -> RTTI"""
|
||||
return _io.ArclinkConnection_TypeInfo()
|
||||
|
||||
def className(self):
|
||||
r"""className(ArclinkConnection self) -> char const *"""
|
||||
return _io.ArclinkConnection_className(self)
|
||||
|
||||
def typeInfo(self):
|
||||
r"""typeInfo(ArclinkConnection self) -> RTTI"""
|
||||
return _io.ArclinkConnection_typeInfo(self)
|
||||
|
||||
@staticmethod
|
||||
def Cast(*args):
|
||||
r"""
|
||||
Cast(BaseObject o) -> ArclinkConnection
|
||||
Cast(Seiscomp::Core::BaseObjectPtr o) -> ArclinkConnection
|
||||
"""
|
||||
return _io.ArclinkConnection_Cast(*args)
|
||||
|
||||
@staticmethod
|
||||
def ConstCast(*args):
|
||||
r"""
|
||||
ConstCast(BaseObject o) -> ArclinkConnection
|
||||
ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> ArclinkConnection
|
||||
"""
|
||||
return _io.ArclinkConnection_ConstCast(*args)
|
||||
|
||||
def __init__(self, *args):
|
||||
r"""
|
||||
__init__(ArclinkConnection self) -> ArclinkConnection
|
||||
__init__(ArclinkConnection self, string serverloc) -> ArclinkConnection
|
||||
"""
|
||||
_io.ArclinkConnection_swiginit(self, _io.new_ArclinkConnection(*args))
|
||||
__swig_destroy__ = _io.delete_ArclinkConnection
|
||||
|
||||
def setRecordType(self, arg2):
|
||||
r"""setRecordType(ArclinkConnection self, char const * arg2) -> bool"""
|
||||
return _io.ArclinkConnection_setRecordType(self, arg2)
|
||||
|
||||
def setSource(self, serverloc):
|
||||
r"""setSource(ArclinkConnection self, string serverloc) -> bool"""
|
||||
return _io.ArclinkConnection_setSource(self, serverloc)
|
||||
|
||||
def setUser(self, name, password):
|
||||
r"""setUser(ArclinkConnection self, string name, string password) -> bool"""
|
||||
return _io.ArclinkConnection_setUser(self, name, password)
|
||||
|
||||
def addStream(self, *args):
|
||||
r"""
|
||||
addStream(ArclinkConnection self, string networkCode, string stationCode, string locationCode, string channelCode) -> bool
|
||||
addStream(ArclinkConnection self, string networkCode, string stationCode, string locationCode, string channelCode, Time stime, Time etime) -> bool
|
||||
"""
|
||||
return _io.ArclinkConnection_addStream(self, *args)
|
||||
|
||||
def setStartTime(self, stime):
|
||||
r"""setStartTime(ArclinkConnection self, Time stime) -> bool"""
|
||||
return _io.ArclinkConnection_setStartTime(self, stime)
|
||||
|
||||
def setEndTime(self, etime):
|
||||
r"""setEndTime(ArclinkConnection self, Time etime) -> bool"""
|
||||
return _io.ArclinkConnection_setEndTime(self, etime)
|
||||
|
||||
def setTimeout(self, seconds):
|
||||
r"""setTimeout(ArclinkConnection self, int seconds) -> bool"""
|
||||
return _io.ArclinkConnection_setTimeout(self, seconds)
|
||||
|
||||
def close(self):
|
||||
r"""close(ArclinkConnection self)"""
|
||||
return _io.ArclinkConnection_close(self)
|
||||
|
||||
def next(self):
|
||||
r"""next(ArclinkConnection self) -> Record"""
|
||||
return _io.ArclinkConnection_next(self)
|
||||
|
||||
def clear(self):
|
||||
r"""clear(ArclinkConnection self) -> bool"""
|
||||
return _io.ArclinkConnection_clear(self)
|
||||
|
||||
def reconnect(self):
|
||||
r"""reconnect(ArclinkConnection self) -> bool"""
|
||||
return _io.ArclinkConnection_reconnect(self)
|
||||
|
||||
# Register ArclinkConnection in _io:
|
||||
_io.ArclinkConnection_swigregister(ArclinkConnection)
|
||||
|
||||
def ArclinkConnection_ClassName():
|
||||
r"""ArclinkConnection_ClassName() -> char const *"""
|
||||
return _io.ArclinkConnection_ClassName()
|
||||
|
||||
def ArclinkConnection_TypeInfo():
|
||||
r"""ArclinkConnection_TypeInfo() -> RTTI"""
|
||||
return _io.ArclinkConnection_TypeInfo()
|
||||
|
||||
def ArclinkConnection_Cast(*args):
|
||||
r"""
|
||||
ArclinkConnection_Cast(BaseObject o) -> ArclinkConnection
|
||||
ArclinkConnection_Cast(Seiscomp::Core::BaseObjectPtr o) -> ArclinkConnection
|
||||
"""
|
||||
return _io.ArclinkConnection_Cast(*args)
|
||||
|
||||
def ArclinkConnection_ConstCast(*args):
|
||||
r"""
|
||||
ArclinkConnection_ConstCast(BaseObject o) -> ArclinkConnection
|
||||
ArclinkConnection_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> ArclinkConnection
|
||||
"""
|
||||
return _io.ArclinkConnection_ConstCast(*args)
|
||||
|
||||
class CombinedConnection(RecordStream):
|
||||
r"""Proxy of C++ Seiscomp::RecordStream::CombinedConnection class."""
|
||||
|
||||
@ -2146,16 +1836,16 @@ class CombinedConnection(RecordStream):
|
||||
def addStream(self, *args):
|
||||
r"""
|
||||
addStream(CombinedConnection self, string networkCode, string stationCode, string locationCode, string channelCode) -> bool
|
||||
addStream(CombinedConnection self, string networkCode, string stationCode, string locationCode, string channelCode, Time startTime, Time endTime) -> bool
|
||||
addStream(CombinedConnection self, string networkCode, string stationCode, string locationCode, string channelCode, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & startTime, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & endTime) -> bool
|
||||
"""
|
||||
return _io.CombinedConnection_addStream(self, *args)
|
||||
|
||||
def setStartTime(self, stime):
|
||||
r"""setStartTime(CombinedConnection self, Time stime) -> bool"""
|
||||
r"""setStartTime(CombinedConnection self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & stime) -> bool"""
|
||||
return _io.CombinedConnection_setStartTime(self, stime)
|
||||
|
||||
def setEndTime(self, etime):
|
||||
r"""setEndTime(CombinedConnection self, Time etime) -> bool"""
|
||||
r"""setEndTime(CombinedConnection self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & etime) -> bool"""
|
||||
return _io.CombinedConnection_setEndTime(self, etime)
|
||||
|
||||
def setTimeout(self, seconds):
|
||||
@ -2172,7 +1862,6 @@ class CombinedConnection(RecordStream):
|
||||
|
||||
# Register CombinedConnection in _io:
|
||||
_io.CombinedConnection_swigregister(CombinedConnection)
|
||||
|
||||
class RecordIIRFilterF(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordIIRFilter< float > class."""
|
||||
|
||||
@ -2227,7 +1916,6 @@ class RecordIIRFilterF(RecordFilterInterface):
|
||||
|
||||
# Register RecordIIRFilterF in _io:
|
||||
_io.RecordIIRFilterF_swigregister(RecordIIRFilterF)
|
||||
|
||||
class RecordIIRFilterD(RecordFilterInterface):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordIIRFilter< double > class."""
|
||||
|
||||
@ -2282,7 +1970,6 @@ class RecordIIRFilterD(RecordFilterInterface):
|
||||
|
||||
# Register RecordIIRFilterD in _io:
|
||||
_io.RecordIIRFilterD_swigregister(RecordIIRFilterD)
|
||||
|
||||
class RecordResamplerF(RecordResamplerBase):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordResampler< float > class."""
|
||||
|
||||
@ -2308,7 +1995,6 @@ class RecordResamplerF(RecordResamplerBase):
|
||||
|
||||
# Register RecordResamplerF in _io:
|
||||
_io.RecordResamplerF_swigregister(RecordResamplerF)
|
||||
|
||||
class RecordResamplerD(RecordResamplerBase):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordResampler< double > class."""
|
||||
|
||||
@ -2334,7 +2020,6 @@ class RecordResamplerD(RecordResamplerBase):
|
||||
|
||||
# Register RecordResamplerD in _io:
|
||||
_io.RecordResamplerD_swigregister(RecordResamplerD)
|
||||
|
||||
class RecordResamplerI(RecordResamplerBase):
|
||||
r"""Proxy of C++ Seiscomp::IO::RecordResampler< int > class."""
|
||||
|
||||
@ -2360,7 +2045,6 @@ class RecordResamplerI(RecordResamplerBase):
|
||||
|
||||
# Register RecordResamplerI in _io:
|
||||
_io.RecordResamplerI_swigregister(RecordResamplerI)
|
||||
|
||||
class ExportObjectList(object):
|
||||
r"""Proxy of C++ std::vector< Seiscomp::Core::BaseObject * > class."""
|
||||
|
||||
@ -2403,21 +2087,21 @@ class ExportObjectList(object):
|
||||
def __delitem__(self, *args):
|
||||
r"""
|
||||
__delitem__(ExportObjectList self, std::vector< Seiscomp::Core::BaseObject * >::difference_type i)
|
||||
__delitem__(ExportObjectList self, PySliceObject * slice)
|
||||
__delitem__(ExportObjectList self, SWIGPY_SLICEOBJECT * slice)
|
||||
"""
|
||||
return _io.ExportObjectList___delitem__(self, *args)
|
||||
|
||||
def __getitem__(self, *args):
|
||||
r"""
|
||||
__getitem__(ExportObjectList self, PySliceObject * slice) -> ExportObjectList
|
||||
__getitem__(ExportObjectList self, SWIGPY_SLICEOBJECT * slice) -> ExportObjectList
|
||||
__getitem__(ExportObjectList self, std::vector< Seiscomp::Core::BaseObject * >::difference_type i) -> BaseObject
|
||||
"""
|
||||
return _io.ExportObjectList___getitem__(self, *args)
|
||||
|
||||
def __setitem__(self, *args):
|
||||
r"""
|
||||
__setitem__(ExportObjectList self, PySliceObject * slice, ExportObjectList v)
|
||||
__setitem__(ExportObjectList self, PySliceObject * slice)
|
||||
__setitem__(ExportObjectList self, SWIGPY_SLICEOBJECT * slice, ExportObjectList v)
|
||||
__setitem__(ExportObjectList self, SWIGPY_SLICEOBJECT * slice)
|
||||
__setitem__(ExportObjectList self, std::vector< Seiscomp::Core::BaseObject * >::difference_type i, BaseObject x)
|
||||
"""
|
||||
return _io.ExportObjectList___setitem__(self, *args)
|
||||
@ -2528,5 +2212,3 @@ class ExportObjectList(object):
|
||||
# Register ExportObjectList in _io:
|
||||
_io.ExportObjectList_swigregister(ExportObjectList)
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user