Files
shadowsocks-iOS/ShadowWeb/SWBTab.m
2013-02-16 15:53:52 +08:00

25 lines
339 B
Objective-C

//
// SWBTab.m
// SWBuaWeb
//
// Created by clowwindy on 11-6-12.
// Copyright 2011年 __MyCompanyName__. All rights reserved.
//
#import "SWBTab.h"
@implementation SWBTab
@synthesize title, tag;
- (id)initWithTag:(NSInteger)aTag {
self = [super init];
if (self) {
self->tag = aTag;
}
return self;
}
@end