You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
620 B
27 lines
620 B
13 years ago
|
|
||
|
class Parameter(object):
|
||
|
def __init__(self, name):
|
||
|
self.name = name
|
||
|
|
||
|
|
||
|
class Vehicle(object):
|
||
|
def __init__ (self, name, path):
|
||
|
self.name = name
|
||
|
self.path = path
|
||
|
self.params = []
|
||
|
|
||
|
class Library(object):
|
||
|
def __init__ (self, name, path):
|
||
|
self.name = name
|
||
|
self.path = path
|
||
|
self.params = []
|
||
|
|
||
|
known_param_fields = [
|
||
|
'Description',
|
||
|
'DisplayName',
|
||
|
'Values',
|
||
|
'Range',
|
||
|
'Units',
|
||
|
'Increment',
|
||
|
'User',
|
||
|
]
|