2
0

Initial working password application with types and history.

This commit is contained in:
Maarten Billemont
2012-01-05 01:44:15 +01:00
parent d7a448dfe0
commit cab35df79b
62 changed files with 1394 additions and 862 deletions

View File

@@ -0,0 +1,23 @@
//
// 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 & OPElementTypeStored);
return self.contentObject;
}
@end