another.im-ios/Monal/Classes/MLNotificationManager.h
2024-11-18 15:53:52 +01:00

25 lines
555 B
Objective-C

//
// MLNotificationManager.h
// Monal
//
// Created by Anurodh Pokharel on 7/20/13.
//
//
#import <Foundation/Foundation.h>
#import <UserNotifications/UserNotifications.h>
#import "MLConstants.h"
#import "DataLayer.h"
/**
Singleton object that will handle all sliders, alerts and sounds. listens for new message notification.
*/
@interface MLNotificationManager : NSObject
+(MLNotificationManager*) sharedInstance;
@property (nonatomic, strong) MLContact* currentContact;
-(void) donateInteractionForOutgoingDBId:(NSNumber*) messageDBId;
@end