home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2008 March / MAC_easy_03_08.iso / Software / Shareware / Isolator-3.3.dmg / Docs / Source Code / IsoStatusItemView.h < prev    next >
Encoding:
Text File  |  2008-06-04  |  406 b   |  23 lines

  1. //
  2. //  IsoStatusItemView.h
  3. //  Isolator
  4. //
  5. //  Created by Ben Willmore on 06/03/2008.
  6. //  Copyright 2008 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10. #import "IsoController.h"
  11.  
  12. @class IsoController;
  13.  
  14.  
  15. @interface IsoStatusItemView : NSView {
  16.     IsoController* isoController;
  17.     BOOL highlighted;
  18. }
  19.  
  20. - (id) initWithFrame:(NSRect)frame isoController:(IsoController*)theIsoController;
  21.  
  22. @end
  23.