git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

HexFiend/HFFullMemoryByteArray.h

      1 //
      2 //  HFFullMemoryByteArray.h
      3 //  HexFiend_2
      4 //
      5 //  Copyright 2007 ridiculous_fish. All rights reserved.
      6 //
      7 
      8 #import <HexFiend/HFByteArray.h>
      9 
     10 /*!
     11   @class HFFullMemoryByteArray
     12   @brief A naive subclass of HFByteArray suitable mainly for testing.  Use HFBTreeByteArray instead.
     13 
     14   HFFullMemoryByteArray is a simple subclass of HFByteArray that does not store any byte slices.  Because it stores all data in an NSMutableData, it is not efficient.  It is mainly useful as a naive implementation for testing.  Use HFBTreeByteArray instead.
     15 */
     16 @interface HFFullMemoryByteArray : HFByteArray {
     17     NSMutableData *data;
     18 }
     19 
     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.