Skip to content

Commit

Permalink
add stub for cppcore
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Jan 15, 2024
1 parent a32f86a commit 70c2a5c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions efel/cppcore.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
def Initialize(depfilename: str, outfilename: str) -> int: ...
def getFeature(feature_name: str, values: list) -> int: ...
def getFeatureInt(feature_name: str, values: list[int]) -> int: ...
def getFeatureDouble(feature_name: str, values: list[float]) -> int: ...
def getMapIntData(data_name: str) -> list[int]: ...
def getMapDoubleData(data_name: str) -> list[float]: ...
def setFeatureInt(feature_name: str, values: list[int]) -> int: ...
def setFeatureDouble(feature_name: str, values: list[float]) -> float: ...
def setFeatureString(feature_name: str, value: str) -> int: ...
def featuretype(feature_name: str) -> str: ...
def getgError() -> str: ...
def getFeatureNames(feature_names: list[str]) -> None: ...

0 comments on commit 70c2a5c

Please sign in to comment.