session-ios/Signal/src/textsecure/Messages/TSOutgoingMessage.h
Christine Corbett 333c920e0b Group functionality
• create
• send/receive full functionality
• basic UI for group updating.

TODOS:
    -group avatars not supported
    -group update occurrence initiated by Android displayed in thread UI but not yet fully

Reviewed-by: @FredericJacobs
2015-01-04 11:30:26 +01:00

22 lines
490 B
Objective-C

//
// TSOutgoingMessage.h
// TextSecureKit
//
// Created by Frederic Jacobs on 15/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import "TSMessage.h"
@interface TSOutgoingMessage : TSMessage
typedef NS_ENUM(NSInteger, TSOutgoingMessageState){
TSOutgoingMessageStateAttemptingOut,
TSOutgoingMessageStateUnsent,
TSOutgoingMessageStateSent,
TSOutgoingMessageStateDelivered
};
@property (nonatomic) TSOutgoingMessageState messageState;
@end