예제 #1
0
파일: main.py 프로젝트: urbas/HomeLib
 def serviceSoftware(self):
     """
     @returns    The 'Software Management' service, which provides software
                 installation, removal and similar functionality.
     """
     if not self.__softwareService:
         from homelib.software import Software
         self.__softwareService = Software.loadChosenImpl(self)
     return self.__softwareService
예제 #2
0
 def __init__(self, main=None):
     Software.__init__(self, main)