Blame client/iOS/Views/EditFlagTableViewCell.h

Packit 1fb8d4
/*
Packit 1fb8d4
 Custom table cell with toggle switch
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 <UIKit/UIKit.h>
Packit 1fb8d4
Packit 1fb8d4
@interface EditFlagTableViewCell : UITableViewCell
Packit 1fb8d4
{
Packit Service 5a9772
	IBOutlet UILabel *_label;
Packit Service 5a9772
	IBOutlet UISwitch *_toggle;
Packit 1fb8d4
}
Packit 1fb8d4
Packit Service 5a9772
@property(retain, nonatomic) UILabel *label;
Packit Service 5a9772
@property(retain, nonatomic) UISwitch *toggle;
Packit 1fb8d4
Packit 1fb8d4
@end