init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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
|
||||
import vtkmodules.vtkCommonExecutionModel
|
||||
|
||||
class vtkCONVERGECFDReader(vtkmodules.vtkCommonExecutionModel.vtkPartitionedDataSetCollectionAlgorithm):
|
||||
cell_data_array_selection:'getset_descriptor'
|
||||
file_name:'getset_descriptor'
|
||||
parcel_data_array_selection:'getset_descriptor'
|
||||
def __init__(self, **properties:Any) -> None: ...
|
||||
def CanReadFile(self, fname:str) -> int: ...
|
||||
def GetCellDataArraySelection(self) -> 'vtkDataArraySelection': ...
|
||||
def GetFileName(self) -> str: ...
|
||||
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||||
@staticmethod
|
||||
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||||
def GetParcelDataArraySelection(self) -> 'vtkDataArraySelection': ...
|
||||
def IsA(self, type:str) -> int: ...
|
||||
@staticmethod
|
||||
def IsTypeOf(type:str) -> int: ...
|
||||
def NewInstance(self) -> 'vtkCONVERGECFDReader': ...
|
||||
@staticmethod
|
||||
def SafeDownCast(o:'vtkObjectBase') -> 'vtkCONVERGECFDReader': ...
|
||||
def SetFileName(self, _arg:str) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user