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 / StartupItemController.h < prev    next >
Encoding:
Text File  |  2008-06-04  |  385 b   |  23 lines

  1. //
  2. //  StartupItemController.h
  3. //  Isolator
  4. //
  5. //  Created by Ben Willmore on 12/02/2007.
  6. //  Copyright 2007 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Carbon/Carbon.h>
  10. #import <Cocoa/Cocoa.h>
  11. #import "LoginItemsAE.h"
  12.  
  13. @interface StartupItemController : NSObject {
  14.  
  15. }
  16.  
  17. -(BOOL) enabled;
  18. -(void) setEnabled:(BOOL)value;
  19. -(void) removeStartupItem;
  20. -(void) addStartupItem;
  21.  
  22. @end
  23.