mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 00:52:43 +02:00
22 lines
486 B
Objective-C
22 lines
486 B
Objective-C
//
|
|
// ShareRecentsDataSource.h
|
|
// Riot
|
|
//
|
|
// Created by Aram Sargsyan on 8/10/17.
|
|
// Copyright © 2017 matrix.org. All rights reserved.
|
|
//
|
|
|
|
#import <MatrixKit/MatrixKit.h>
|
|
|
|
typedef NS_ENUM(NSInteger, ShareRecentsDataSourceMode)
|
|
{
|
|
RecentsDataSourceModePeople,
|
|
RecentsDataSourceModeRooms
|
|
};
|
|
|
|
@interface ShareRecentsDataSource : MXKRecentsDataSource
|
|
|
|
- (instancetype)initWithMatrixSession:(MXSession *)mxSession dataSourceMode:(ShareRecentsDataSourceMode)dataSourceMode;
|
|
|
|
@end
|