cclang/src/runtime/abc/runtime_service_abc.py
2021-08-14 16:41:25 +02:00

16 lines
283 B
Python

from abc import ABC, abstractmethod
class RuntimeServiceABC(ABC):
@abstractmethod
def __init__(self): pass
@property
@abstractmethod
def line_count(self) -> int: pass
@line_count.setter
@abstractmethod
def line_count(self, line_count: int): pass