Blame client/iOS/Views/EditSelectionTableViewCell.h

Packit Service fa4841
/*
Packit Service fa4841
 Custom table cell with a label on the right, showing the current selection
Packit Service b1ea74
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service b1ea74
Packit Service b1ea74
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service b1ea74
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service b1ea74
 http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import <UIKit/UIKit.h>
Packit Service fa4841
Packit Service fa4841
@interface EditSelectionTableViewCell : UITableViewCell
Packit Service fa4841
{
Packit Service b1ea74
	IBOutlet UILabel *_label;
Packit Service b1ea74
	IBOutlet UILabel *_selection;
Packit Service fa4841
}
Packit Service fa4841
Packit Service b1ea74
@property(retain, nonatomic) UILabel *label;
Packit Service b1ea74
@property(retain, nonatomic) UILabel *selection;
Packit Service fa4841
Packit Service fa4841
@end