session-ios/Signal/src/textsecure/Messages/TSCall.h
2015-01-04 11:30:27 +01:00

26 lines
591 B
Objective-C

//
// TSCall.h
// TextSecureKit
//
// Created by Frederic Jacobs on 12/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "TSInteraction.h"
#import "Contact.h"
#import "RecentCall.h"
@interface TSCall : TSInteraction
@property (nonatomic, readonly)RPRecentCallType callType;
- (instancetype)initWithTimestamp:(uint64_t)timeStamp
withCallNumber:(NSString*)contactNumber
callType:(RPRecentCallType)callType
inThread:(TSContactThread*)thread;
@end