mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-04-06 22:39:58 +08:00
22 lines
360 B
Objective-C
22 lines
360 B
Objective-C
//
|
|
// SWBTab.h
|
|
// SWBuaWeb
|
|
//
|
|
// Created by clowwindy on 11-6-12.
|
|
// Copyright 2011年 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface SWBTab : NSObject {
|
|
NSInteger tag;
|
|
}
|
|
|
|
- (id)initWithTag:(NSInteger)aTag;
|
|
|
|
@property (nonatomic, strong) NSString *title;
|
|
@property (nonatomic, readonly) NSInteger tag;
|
|
|
|
@end
|