GP-6891 Improved Debugger Trace import/export support and added packed DBTrace GZT file type.

This commit is contained in:
ghidra1
2026-06-10 12:26:44 -04:00
parent 5e22a03899
commit 1ea11b20df
44 changed files with 866 additions and 362 deletions

View File

@@ -50,6 +50,12 @@ public class SkeletonExporter extends Exporter {
return false;
}
@Override
public boolean canExportDomainObject(Class<? extends DomainObject> domainObjectClass) {
// return Program.class.isAssignableFrom(domainObjectClass);
return false;
}
@Override
public boolean export(File file, DomainObject domainObj, AddressSetView addrSet,
TaskMonitor monitor) throws ExporterException, IOException {