blob: c66b82119e9c374f3de5f949f616e85a4729856a [file] [log] [blame]
//
// WXContainerIndex.m
// PonyDebugger
//
// Created by Wen-Hao Lue on 2013-04-28.
//
// Licensed to Square, Inc. under one or more contributor license agreements.
// See the LICENSE file distributed with this work for the terms under
// which Square, Inc. licenses this file to you.
//
#import "WXContainerIndex.h"
#pragma mark - Implementation
@implementation WXContainerIndex
@synthesize name = _name;
@synthesize index = _index;
- (id)initWithName:(NSString *)name index:(NSInteger)index;
{
if (!(self = [super self])) {
return nil;
}
self.name = name;
self.index = index;
return self;
}
@end