3590:5280e37405b8 | 3591:2f2a4a76dd22 |
---|---|
99 """ | 99 """ |
100 Mixin class implementing the notion of visibility. | 100 Mixin class implementing the notion of visibility. |
101 """ | 101 """ |
102 def __init__(self): | 102 def __init__(self): |
103 """ | 103 """ |
104 Method to initialize the visibility. | 104 Constructor |
105 """ | 105 """ |
106 self.setPublic() | 106 self.setPublic() |
107 | 107 |
108 | 108 |
109 class Module(ClbrBaseClasses.Module, VisibilityMixin): | 109 class Module(ClbrBaseClasses.Module, VisibilityMixin): |