1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
from pyTooling.Decorators import export
from pyTooling.CLIAbstraction import Executable
@export
class HDLSimulator:
def GetLibraryCreator(self) -> Executable:
raise NotImplementedError(f"")
def GetLibraryMapper(self) -> Executable:
raise NotImplementedError(f"")
def GetLibraryDeleter(self) -> Executable:
raise NotImplementedError(f"")
def GetVHDLAnalyzer(self) -> Executable:
raise NotImplementedError(f"")
def GetVerilogCompiler(self) -> Executable:
raise NotImplementedError(f"")
def GetEloborator(self) -> Executable:
raise NotImplementedError(f"")
def GetSimulator(self) -> Executable:
raise NotImplementedError(f"")
|