session-ios/Signal/src/contact/GroupContactsResult.h
2017-03-31 11:58:52 -04:00

25 lines
562 B
Objective-C

//
// GroupContactsResult.h
// Signal
//
// Created by Frederic Jacobs on 17/02/15.
// Copyright (c) 2015 Open Whisper Systems. All rights reserved.
//
#import <Foundation/Foundation.h>
@class Contact;
@interface GroupContactsResult : NSObject
- (instancetype)initWithMembersId:(NSArray *)memberIdentifiers without:(NSArray *)removeIds;
- (NSUInteger)numberOfMembers;
- (BOOL)isContactAtIndexPath:(NSIndexPath *)indexPath;
- (Contact *)contactForIndexPath:(NSIndexPath *)indexPath;
- (NSString *)identifierForIndexPath:(NSIndexPath *)indexPath;
@end