|
//
// hotAskContentCell.h
// ThePaperDemo
//
// Created by scar1900 on 14/10/30.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "askContentCell.h"
@protocol hotAskContentDelegate <NSObject>
- (void)titleClick:(commentObjectVO*)contBO;
@end
@interface hotAskContentCell : askContentCell
@property(nonatomic, weak)id<hotAskContentDelegate> delegate;
@end
|