| Index: tools/json_schema_compiler/model.py
|
| diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
|
| index e0147b5b4889fb2a86b59a74648a4deb24316051..3243b5799745810828b158cc1ade5ce595afd61e 100644
|
| --- a/tools/json_schema_compiler/model.py
|
| +++ b/tools/json_schema_compiler/model.py
|
| @@ -210,6 +210,7 @@ class Type(object):
|
| self.property_type = PropertyType.ENUM
|
| self.enum_values = [EnumValue(value) for value in json['enum']]
|
| self.cpp_enum_prefix_override = json.get('cpp_enum_prefix_override', None)
|
| + self.is_class = json.get('class', False)
|
| elif json_type == 'any':
|
| self.property_type = PropertyType.ANY
|
| elif json_type == 'binary':
|
|
|