| 68 | } |
| 69 | |
| 70 | bool AnnotationArgumentList::getBoolOption(const string & name, bool def) const { |
| 71 | auto arg = find(name, Type::tBool); |
| 72 | return arg ? arg->bValue : def; |
| 73 | } |
| 74 | |
| 75 | int32_t AnnotationArgumentList::getIntOption(const string & name, int32_t def) const { |
| 76 | auto arg = find(name, Type::tInt); |