2012-01-05 00:44:15 +00:00
|
|
|
//
|
|
|
|
// OPElementStoredEntity.m
|
|
|
|
// OnePassword
|
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "OPElementStoredEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation OPElementStoredEntity
|
|
|
|
|
|
|
|
@dynamic contentObject;
|
|
|
|
|
|
|
|
- (id)content {
|
|
|
|
|
2012-01-24 23:30:43 +00:00
|
|
|
assert(self.type & OPElementTypeClassStored);
|
2012-01-05 00:44:15 +00:00
|
|
|
|
|
|
|
return self.contentObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|