// // DesktopSensor.h // Pennyworth // // Created by Chris Karr on 12/24/07. // Copyright 2007 Chris J. Karr. All rights reserved. // #import @interface DesktopSensor : NSObject { NSString * lastIdentifier; NSString * lastApplication; NSDate * lastSwitch; } @property(copy) NSString * lastIdentifier; @property(copy) NSString * lastApplication; @property(retain) NSDate * lastSwitch; @end