Refactor RoomTimelineCellProviderProtocol to RoomTimelineCellProvider.

This commit is contained in:
SBiOSoftWhare
2022-01-20 17:09:34 +01:00
parent 0cf1490990
commit 11639b87f6
7 changed files with 10 additions and 8 deletions
@@ -14,14 +14,16 @@
// limitations under the License.
//
#import "RoomTimelineCellProviderProtocol.h"
#import "RoomTimelineCellProvider.h"
NS_ASSUME_NONNULL_BEGIN
@interface PlainRoomTimelineCellProvider: NSObject<RoomTimelineCellProviderProtocol>
@interface PlainRoomTimelineCellProvider: NSObject<RoomTimelineCellProvider>
- (NSDictionary<NSNumber*, Class>*)outgoingTextMessageCellsMapping;
- (NSDictionary<NSNumber*, Class>*)outgoingAttachmentCellsMapping;
@end
NS_ASSUME_NONNULL_END