WaitingView.h 286 B

12345678910111213141516
  1. //
  2. // WaitingView.h
  3. // NoteLedge for Mac
  4. //
  5. // Created by kdanmobile on 14-3-31.
  6. // Copyright (c) 2014年 kdanmobile. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface WaitingView : NSView
  10. {
  11. NSProgressIndicator *_indicator;
  12. }
  13. - (void)startAnimation;
  14. @end