git remote add ssk ../SignalServiceKit git remote update git merge -s ours --allow-unrelated-histories --no-commit ssk/master git read-tree --prefix=SignalServiceKit -u ssk/master git commit
16 lines
295 B
Objective-C
16 lines
295 B
Objective-C
//
|
|
// TSContactsIntersection.h
|
|
// TextSecureiOS
|
|
//
|
|
// Created by Frederic Jacobs on 10/12/13.
|
|
// Copyright (c) 2013 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "TSRequest.h"
|
|
|
|
@interface TSContactsIntersectionRequest : TSRequest
|
|
|
|
- (id)initWithHashesArray:(NSArray *)hashes;
|
|
|
|
@end
|