12 lines
182 B
Python
12 lines
182 B
Python
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
|
||
|
class ITransmissive(ABC):
|
||
|
@abstractmethod
|
||
|
def calcSignal(self):
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def calcNoise(self):
|
||
|
pass
|