Source code for api.simulation.studies.result_writing_strategy_setup

from abc import abstractmethod, ABC


[docs] class ResultWritingStrategySetup: def __init__(self, item): self._result_writing_strategy = item def _get_wrapped_object(self): return self._result_writing_strategy
[docs] class SimresultSelectable(ABC): @abstractmethod def select_simresult_by_name(self, simresult_name: str) -> ResultWritingStrategySetup: pass