Blame client/iOS/Views/BookmarkTableCell.h

Packit Service fa4841
/*
Packit Service fa4841
 Custom bookmark table cell
Packit Service bb5c11
 
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service bb5c11
 
Packit Service bb5c11
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit Service bb5c11
 If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import <UIKit/UIKit.h>
Packit Service fa4841
Packit Service bb5c11
Packit Service bb5c11
@interface BookmarkTableCell : UITableViewCell 
Packit Service fa4841
{
Packit Service bb5c11
	IBOutlet UILabel* _title;
Packit Service bb5c11
	IBOutlet UILabel* _sub_title;
Packit Service bb5c11
	IBOutlet UIImageView* _connection_state_icon;
Packit Service fa4841
}
Packit Service fa4841
Packit Service bb5c11
@property (retain, nonatomic) UILabel* title;
Packit Service bb5c11
@property (retain, nonatomic) UILabel* subTitle;
Packit Service bb5c11
@property (retain, nonatomic) UIImageView* connectionStateIcon;
Packit Service bb5c11
Packit Service fa4841
Packit Service fa4841
@end