mirror of
https://github.com/drewmccormack/ensembles.git
synced 2026-02-27 18:24:06 +01:00
24 lines
397 B
Objective-C
24 lines
397 B
Objective-C
//
|
|
// IDMMediaFile.m
|
|
// Idiomatic
|
|
//
|
|
// Created by Drew McCormack on 21/02/14.
|
|
// Copyright (c) 2014 The Mental Faculty B.V. All rights reserved.
|
|
//
|
|
|
|
#import "IDMMediaFile.h"
|
|
|
|
|
|
@implementation IDMMediaFile
|
|
|
|
@dynamic data;
|
|
@dynamic uniqueIdentifier;
|
|
|
|
- (void)awakeFromInsert
|
|
{
|
|
[super awakeFromInsert];
|
|
self.uniqueIdentifier = [[NSProcessInfo processInfo] globallyUniqueString];
|
|
}
|
|
|
|
@end
|