Customermanager.m 667 Bytes
//
//  Customermanager.m
//  Lighting
//
//  Created by 曹云霄 on 16/5/12.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "Customermanager.h"

@implementation Customermanager


static Customermanager *manager = nil;

+ (Customermanager *)manager
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        manager = [[Customermanager alloc]init];
    });
    return manager;
}


+ (id)allocWithZone:(struct _NSZone *)zone
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        manager = [super allocWithZone:zone];
    });
    return manager;
}





@end