diff options
Diffstat (limited to 'tools/aapt2/Debug.h')
-rw-r--r-- | tools/aapt2/Debug.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/aapt2/Debug.h b/tools/aapt2/Debug.h index ba05be91e91d..fbe64773d4ed 100644 --- a/tools/aapt2/Debug.h +++ b/tools/aapt2/Debug.h @@ -25,8 +25,12 @@ namespace aapt { +struct DebugPrintTableOptions { + bool showSources = false; +}; + struct Debug { - static void printTable(ResourceTable* table); + static void printTable(ResourceTable* table, const DebugPrintTableOptions& options = {}); static void printStyleGraph(ResourceTable* table, const ResourceName& targetStyle); static void dumpHex(const void* data, size_t len); |