aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/processor/memory_region.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/google_breakpad/processor/memory_region.h')
-rw-r--r--src/google_breakpad/processor/memory_region.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/memory_region.h b/src/google_breakpad/processor/memory_region.h
index bd9755f5..30f88df4 100644
--- a/src/google_breakpad/processor/memory_region.h
+++ b/src/google_breakpad/processor/memory_region.h
@@ -67,6 +67,9 @@ class MemoryRegion {
virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0;
virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0;
virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
+
+ // Print a human-readable representation of the object to stdout.
+ virtual void Print() const = 0;
};