summaryrefslogtreecommitdiff
path: root/Juick/Views/BubbleMessageCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Views/BubbleMessageCell.h')
-rw-r--r--Juick/Views/BubbleMessageCell.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Juick/Views/BubbleMessageCell.h b/Juick/Views/BubbleMessageCell.h
deleted file mode 100644
index bad2fc4..0000000
--- a/Juick/Views/BubbleMessageCell.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// BubbleMessageCell.h
-// Juick
-//
-// Created by Vitaly Takmazov on 04/03/2018.
-// Copyright © 2018 com.juick. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-#import "Message.h"
-
-@interface BubbleMessageCell : UITableViewCell
-@property (strong, nonatomic) IBOutlet UIImageView *avatarView;
-@property (strong, nonatomic) IBOutlet UILabel *unreadMarker;
-@property (strong, nonatomic) IBOutlet UILabel *name;
-@property (strong, nonatomic) IBOutlet UITextView *message;
-
--(void) configureWithMessage:(Message *) message isMe:(BOOL)isMe;
-
-@end