Blame client/iOS/Views/SessionTableCell.m

Packit 1fb8d4
/*
Packit 1fb8d4
 Custom session table cell
Packit Service 5a9772
Packit 1fb8d4
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service 5a9772
Packit Service 5a9772
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service 5a9772
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service 5a9772
 http://mozilla.org/MPL/2.0/.
Packit 1fb8d4
 */
Packit 1fb8d4
Packit 1fb8d4
#import "SessionTableCell.h"
Packit 1fb8d4
Packit 1fb8d4
@implementation SessionTableCell
Packit 1fb8d4
Packit Service 5a9772
@synthesize title = _title, server = _server, username = _username, screenshot = _screenshot,
Packit Service 5a9772
            disconnectButton = _disconnect_button;
Packit 1fb8d4
Packit Service 5a9772
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
Packit Service 5a9772
{
Packit 1fb8d4
Packit Service 5a9772
	self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
Packit Service 5a9772
	if (self)
Packit Service 5a9772
	{
Packit Service 5a9772
		// Initialization code.
Packit Service 5a9772
	}
Packit Service 5a9772
	return self;
Packit 1fb8d4
}
Packit 1fb8d4
Packit Service 5a9772
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
Packit Service 5a9772
{
Packit Service 5a9772
Packit Service 5a9772
	[super setSelected:selected animated:animated];
Packit 1fb8d4
Packit Service 5a9772
	// Configure the view for the selected state.
Packit 1fb8d4
}
Packit 1fb8d4
Packit Service 5a9772
- (void)dealloc
Packit Service 5a9772
{
Packit Service 5a9772
	[super dealloc];
Packit Service 5a9772
}
Packit 1fb8d4
Packit 1fb8d4
@end