Index: grit/node/structure.py |
=================================================================== |
--- grit/node/structure.py (revision 171) |
+++ grit/node/structure.py (working copy) |
@@ -332,6 +332,15 @@ |
return filename |
+ def IsResourceMapSource(self): |
+ return True |
+ |
+ def GeneratesResourceMapEntry(self, output_all_resource_defines, |
+ is_active_descendant): |
+ if output_all_resource_defines: |
+ return True |
+ return is_active_descendant |
+ |
@staticmethod |
def Construct(parent, name, type, file, encoding='cp1252'): |
'''Creates a new node which is a child of 'parent', with attributes set |