1 class myIntSynthProvider(object):
3 def __init__(self, valobj, dict):
5 self.val = self.valobj.GetChildMemberWithName("theValue")
7 def num_children(self):
10 def get_child_at_index(self, index):
13 def get_child_index(self, name):
19 def has_children(self):
22 def get_type_name(self):
23 return "ThisTestPasses"
26 class myArraySynthProvider(object):
28 def __init__(self, valobj, dict):
30 self.array = self.valobj.GetChildMemberWithName("array")
32 def num_children(self, max_count):
37 def get_child_at_index(self, index):
38 return None # Keep it simple when this is not tested here.
40 def get_child_index(self, name):
41 return None # Keep it simple when this is not tested here.
43 def has_children(self):