SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
HexFiend/HFFullMemoryByteSlice.h
1 //
2 // HFFullMemoryByteSlice.h
3 // HexFiend_2
4 //
5 // Copyright 2007 ridiculous_fish. All rights reserved.
6 //
7
8 #import <HexFiend/HFByteSlice.h>
9
10 /*! @class HFFullMemoryByteSlice
11
12 @brief A simple subclass of HFByteSlice that wraps an NSData. For most uses, prefer HFSharedMemoryByteSlice.
13 */
14 @interface HFFullMemoryByteSlice : HFByteSlice {
15 NSData *data;
16 }
17
18 /*! Init with a given NSData, which is copied via the \c -copy message. */
19 - (instancetype)initWithData:(NSData *)val;
20
21 @end
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.