00001 // 00002 // HFProcessMemoryByteSlice.h 00003 // HexFiend_2 00004 // 00005 // Copyright 2009 Apple Computer. All rights reserved. 00006 // 00007 00008 #import <HexFiend/HFByteSlice.h> 00009 00013 @interface HFProcessMemoryByteSlice : HFByteSlice { 00014 pid_t processIdentifier; 00015 HFRange memoryRange; 00016 } 00017 00018 - (id)initWithAddressSpaceOfPID:(pid_t)pid; 00019 - (id)initWithPID:(pid_t)pid range:(HFRange)memoryRange; 00020 00021 @end