git.y1.nz

SameBoy

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

HexFiend/HFStringEncodingTextRepresenter.h

      1 //
      2 //  HFASCIITextRepresenter.h
      3 //  HexFiend_2
      4 //
      5 //  Copyright 2007 ridiculous_fish. All rights reserved.
      6 //
      7 
      8 #import <HexFiend/HFTextRepresenter.h>
      9 
     10 /*! @class HFStringEncodingTextRepresenter
     11 
     12     @brief An HFRepresenter responsible for showing data interpreted via an NSStringEncoding.
     13 
     14     HFHexTextRepresenter is an HFRepresenter responsible for showing and editing data interpreted via an NSStringEncoding.  Currently only supersets of ASCII are supported.
     15 */
     16 @interface HFStringEncodingTextRepresenter : HFTextRepresenter {
     17     NSStringEncoding stringEncoding;
     18     
     19 }
     20 
     21 /*! Get the string encoding for this representer.  The default encoding is <tt>[NSString defaultCStringEncoding]</tt>. */
     22 @property (nonatomic) NSStringEncoding encoding;
     23 
     24 /*! Set the string encoding for this representer. */
     25 
     26 @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.