home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / NSFoundation / MemoryAllocation / AppController.h next >
Encoding:
Text File  |  1994-05-25  |  1.2 KB  |  64 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    AppController
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        AppController.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *
  19.  *------------------------------------------------------------------------*/
  20. #import <foundation/NSObject.h>
  21. #import <dpsclient/dpsNeXT.h>
  22.  
  23.  
  24.  
  25.  
  26.  
  27. @interface AppController : NSObject
  28. {
  29.     id    object;
  30.     id    objectText;
  31.     id    objectRetainCount;
  32.     
  33.     id  copy;
  34.     id    copyText;
  35.     id     copyRetainCount;
  36.     
  37.     id    pool;
  38.     id    poolText;
  39.     id    poolObjectCount;
  40.     id    poolButton;
  41.     
  42.     id    buttons1;
  43.     id    buttons2;
  44.     id    console;
  45. }
  46.  
  47. /*--------------------------------------------------------------------------
  48.  *    Action Methods
  49.  *------------------------------------------------------------------------*/
  50. - alloc: sender;
  51. - dealloc: sender;
  52. - retain: sender;
  53. - release: sender;
  54. - autorelease: sender;
  55. - copy: sender;
  56.  
  57. - allocPool: sender;
  58. - releasePool: sender;
  59.  
  60. - console: (NSString *)aString;
  61.  
  62.  
  63. @end
  64.