VLCDBChangeNotifier.h 365 B

12345678910111213141516
  1. //
  2. // VLCDBChangeNotifier.h
  3. // VLC for iOS
  4. //
  5. // Created by Tobias Conradi on 01.04.15.
  6. // Copyright (c) 2015 VideoLAN. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface VLCDBChangeNotifier : NSObject
  10. + (instancetype)sharedNotifier;
  11. - (void)addObserver:(id)observer block:(void (^)(void))onUpdate;
  12. - (void)removeObserver:(id)observer;
  13. @end