refactored heavily
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Transport-Abstraktionen
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
class GnssTransport:
|
||||
def read(self, n: int) -> bytes:
|
||||
raise NotImplementedError
|
||||
|
||||
def write(self, data: bytes) -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
def close(self) -> None:
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user