Home | History | Annotate | Download | only in tools

Lines Matching defs:Option

33 class Option:
103 option = Option(str(field_name), str(field_type), comment)
104 options.append(option)
125 for option in options:
126 if not option.type in ['bool', 'unsigned', 'int', 'std::string',
128 if enums.has_key(option.type):
129 option.enum = enums[option.type]
131 raise Exception('Unknown type: %s' % option.type)