/ tests / GSSTestApp / GSSTestAppIOS / CredentialTableController.h
CredentialTableController.h
 1  //
 2  //  CredentialTableController.h
 3  //  GSSTestApp
 4  //
 5  //  Created by Love Hörnquist Åstrand on 2014-08-16.
 6  //  Copyright (c) 2014 Apple, Inc. All rights reserved.
 7  //
 8  
 9  #import <UIKit/UIKit.h>
10  
11  @protocol GSSCredentialsChangeNotification <NSObject>
12  - (void)GSSCredentialChangeNotifification;
13  @end
14  
15  @interface CredentialTableController : NSObject <UITableViewDelegate, UITableViewDataSource>
16  
17  + (CredentialTableController *)getGlobalController;
18  
19  - (void)addNotification:(id<GSSCredentialsChangeNotification>)object;
20  - (void)removeNotification:(id<GSSCredentialsChangeNotification>)object;
21  
22  @end