FreeRDP
SessionTableCell.m
1 /*
2  Custom session table cell
3 
4  Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5 
6  This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7  If a copy of the MPL was not distributed with this file, You can obtain one at
8  http://mozilla.org/MPL/2.0/.
9  */
10 
11 #import "SessionTableCell.h"
12 
13 @implementation SessionTableCell
14 
15 @synthesize title = _title, server = _server, username = _username, screenshot = _screenshot,
16  disconnectButton = _disconnect_button;
17 
18 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
19 {
20 
21  self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
22  if (self)
23  {
24  // Initialization code.
25  }
26  return self;
27 }
28 
29 - (void)setSelected:(BOOL)selected animated:(BOOL)animated
30 {
31 
32  [super setSelected:selected animated:animated];
33 
34  // Configure the view for the selected state.
35 }
36 
37 - (void)dealloc
38 {
39  [super dealloc];
40 }
41 
42 @end