cclang/src/runtime/abc/runtime_service_abc.py

16 lines
283 B
Python
Raw Normal View History

2021-08-14 16:41:25 +02:00
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