MYKeychainItem.h
changeset 27 d0aadddb9c64
parent 2 8982b8fada63
     1.1 --- a/MYKeychainItem.h	Tue Apr 07 10:56:58 2009 -0700
     1.2 +++ b/MYKeychainItem.h	Tue Jul 21 10:13:08 2009 -0700
     1.3 @@ -29,6 +29,9 @@
     1.4  {
     1.5      @private
     1.6      MYKeychainItemRef _itemRef;
     1.7 +#if MYCRYPTO_USE_IPHONE_API
     1.8 +    BOOL _isPersistent;
     1.9 +#endif
    1.10  }
    1.11  
    1.12  /** The Keychain item reference that this object represents. */
    1.13 @@ -40,4 +43,8 @@
    1.14  /** Removes the item from its keychain, if any. */
    1.15  - (BOOL) removeFromKeychain;
    1.16  
    1.17 +#if MYCRYPTO_USE_IPHONE_API
    1.18 +@property BOOL isPersistent;
    1.19 +#endif
    1.20 +
    1.21  @end