blob: 33dc7d14bb8df4ad03f91ea85b4199fa65502763 [file] [log] [blame]
Enrico Granatabac45f62012-01-31 17:01:51 +00001# Summaries for common ObjC types that require Python scripting
2# to be generated fit into this file
3
4def BOOL_SummaryProvider (valobj,dict):
5 if valobj.GetValueAsUnsigned() == 0:
6 return "NO"
7 else:
8 return "YES"
9