Changeset 498 for trunk/avango-utils/python/_bool_scripts.py
- Timestamp:
- 07/20/10 16:06:33 (22 months ago)
- File:
-
- 1 edited
-
trunk/avango-utils/python/_bool_scripts.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/avango-utils/python/_bool_scripts.py
r448 r498 43 43 44 44 self._actual_id = 0 45 46 self.Name.value = "BoolXBase" 45 47 46 48 def add_and_connect_bool_field(self,field): … … 67 69 68 70 class BoolXOr(BoolXBase): 71 72 def __init__(self): 73 self.super(BoolXOr).__init__() 74 75 self.Name.value = "BoolXOr" 69 76 70 77 def on_calculate(self): … … 84 91 85 92 class BoolXAnd(BoolXBase): 93 94 def __init__(self): 95 self.super(BoolXAnd).__init__() 96 97 self.Name.value = "BoolXAnd" 86 98 87 99 def on_calculate(self):
Note: See TracChangeset
for help on using the changeset viewer.
