/SoftwareUpdateServices/SUOperationProgress.h

https://github.com/mikec30/iOS5-Private-Frameworks · C Header · 33 lines · 21 code · 7 blank · 5 comment · 0 complexity · e38615d51fa4f3d959bbe4dc9b3a03a4 MD5 · raw file

  1. /*
  2. * Generated by class-dump 3.3.4 (64 bit).
  3. *
  4. * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
  5. */
  6. #import "NSObject.h"
  7. #import "NSCoding-Protocol.h"
  8. #import "NSCopying-Protocol.h"
  9. @class NSString;
  10. @interface SUOperationProgress : NSObject <NSCoding, NSCopying>
  11. {
  12. NSString *_phase;
  13. float _percentComplete;
  14. float _normalizedPercentComplete;
  15. double _timeRemaining;
  16. }
  17. @property(nonatomic) double timeRemaining; // @synthesize timeRemaining=_timeRemaining;
  18. @property(nonatomic) float normalizedPercentComplete; // @synthesize normalizedPercentComplete=_normalizedPercentComplete;
  19. @property(nonatomic) float percentComplete; // @synthesize percentComplete=_percentComplete;
  20. @property(retain, nonatomic) NSString *phase; // @synthesize phase=_phase;
  21. - (BOOL)isDone;
  22. - (id)copyWithZone:(struct _NSZone *)arg1;
  23. - (void)encodeWithCoder:(id)arg1;
  24. - (id)initWithCoder:(id)arg1;
  25. - (void)dealloc;
  26. @end