-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDriver.py
More file actions
31 lines (22 loc) · 740 Bytes
/
Driver.py
File metadata and controls
31 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#PLEASE DO NOT EDIT THIS CODE
#This code was generated using the UMPLE 1.31.1.5860.78bb27cc6 modeling language!
from Employee import Employee
# line 86 "model.ump"
# line 182 "model.ump"
class Driver(Employee):
#------------------------
# MEMBER VARIABLES
#------------------------
#------------------------
# CONSTRUCTOR
#------------------------
def __init__(self, aName, aSalary, aStore, aEmployeeManager):
super().__init__(aName, aSalary, aStore, aEmployeeManager)
#------------------------
# INTERFACE
#------------------------
def delete(self):
super().delete()
# line 92 "model.ump"
def __deliverOrder(self):
pass