mirror of
https://github.com/drewmccormack/ensembles.git
synced 2026-03-03 18:23:18 +01:00
26 lines
486 B
Objective-C
26 lines
486 B
Objective-C
//
|
|
// CDEMockLocalFileSystem.m
|
|
// Ensembles
|
|
//
|
|
// Created by Drew McCormack on 15/11/13.
|
|
// Copyright (c) 2013 Drew McCormack. All rights reserved.
|
|
//
|
|
|
|
#import "CDEMockLocalFileSystem.h"
|
|
|
|
@implementation CDEMockLocalFileSystem {
|
|
id <NSObject, NSCopying, NSCoding> _identityToken;
|
|
}
|
|
|
|
- (id <NSObject, NSCopying, NSCoding>)identityToken
|
|
{
|
|
return _identityToken;
|
|
}
|
|
|
|
- (void)setIdentityToken:(id <NSObject, NSCopying, NSCoding>)newToken
|
|
{
|
|
_identityToken = newToken;
|
|
}
|
|
|
|
@end
|