29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
from typing import overload, Any, Callable, TypeVar, Union
|
|
from typing import Tuple, List, Sequence, MutableSequence
|
|
|
|
Callback = Union[Callable[..., None], None]
|
|
Buffer = TypeVar('Buffer')
|
|
Pointer = TypeVar('Pointer')
|
|
Template = TypeVar('Template')
|
|
|
|
import vtkmodules.vtkCommonCore
|
|
|
|
class vtkPythonArchiver(vtkmodules.vtkCommonCore.vtkArchiver):
|
|
python_object:'getset_descriptor'
|
|
def __init__(self, **properties:Any) -> None: ...
|
|
def CloseArchive(self) -> None: ...
|
|
def Contains(self, relativePath:str) -> bool: ...
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
|
@staticmethod
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
|
def InsertIntoArchive(self, relativePath:str, data:str, size:int) -> None: ...
|
|
def IsA(self, type:str) -> int: ...
|
|
@staticmethod
|
|
def IsTypeOf(type:str) -> int: ...
|
|
def NewInstance(self) -> 'vtkPythonArchiver': ...
|
|
def OpenArchive(self) -> None: ...
|
|
@staticmethod
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkPythonArchiver': ...
|
|
def SetPythonObject(self, obj:'PyObject') -> None: ...
|
|
|