2
0
MasterPassword/OnePassword/OPElementStoredEntity.m
2012-01-25 00:30:43 +01:00

24 lines
363 B
Objective-C

//
// 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 {
assert(self.type & OPElementTypeClassStored);
return self.contentObject;
}
@end