Home | History | Annotate | Download | only in tools

Lines Matching defs:Option

32 class Option:
102 option = Option(str(field_name), str(field_type), comment)
103 options.append(option)
124 for option in options:
125 if not option.type in ['bool', 'unsigned', 'int', 'std::string',
127 if enums.has_key(option.type):
128 option.enum = enums[option.type]
130 raise Exception('Unknown type: %s' % option.type)