9from .proxy_interface
import IWorkByProxy
36 def DoWork(self, someArgument : str) -> str:
37 return "Real class received '{0}'".format(someArgument)
65__all__ = [
"Real_Classes_Container"]
The real class object that does all the work.
str DoWork(self, str someArgument)
Do some work on a string.
A class factory for getting the real class.
IWorkByProxy CreateReal()
Retrieve a new instance of the real class.
Represents what can be done on the proxy object.