SDNetworkActivityIndicator.h 479 B

12345678910111213141516171819202122
  1. /*
  2. * This file is part of the SDNetworkActivityIndicator package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #import <Foundation/Foundation.h>
  9. @interface SDNetworkActivityIndicator : NSObject
  10. {
  11. @private
  12. NSUInteger counter;
  13. }
  14. + (id)sharedActivityIndicator;
  15. - (void)startActivity;
  16. - (void)stopActivity;
  17. - (void)stopAllActivity;
  18. @end