|
//
// notificationController.h
// ThePaperHD
//
// Created by liyuan on 15/7/15.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol notificationDelegate <NSObject>
@optional
-(void) notificationToNavi:(commentObjectVO*)comment;
-(void) pushMsgTomessageCenter:(letterBO*) bo;
-(void) notifiToUserGamb:(commentObjectVO*)bo;
-(void) notifiToTopicList;
-(void) notiToNews:(NSDictionary*)dic;
-(void) notiToTopic:(NSDictionary*)dic;
-(void) appearLettreMark:(NSMutableDictionary*) dic;
@end
@interface notificationController : TPTableViewController
@property(nonatomic, weak)id<notificationDelegate> notificationDele;
@end
|