Last change
on this file since 332 was 53, checked in by Nicholas Riley, 22 years ago |
Updated for Pester 1.1a5 (very limited release).
Pester 1.1a4 was never released.
|
File size:
491 bytes
|
Rev | Line | |
---|
[53] | 1 | //
|
---|
| 2 | // PSPropertyListSerialization.h
|
---|
| 3 | // Pester
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Sat Dec 21 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import <Foundation/Foundation.h>
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | @protocol PSPropertyListSerialization
|
---|
| 13 |
|
---|
| 14 | // 1.1 only, deprecated when we move to keyed archiving
|
---|
| 15 | - (NSDictionary *)propertyListRepresentation;
|
---|
| 16 | // subclasses should NOT call [super initWithPropertyList:] - infinite recursion will result!
|
---|
| 17 | - (id)initWithPropertyList:(NSDictionary *)dict;
|
---|
| 18 |
|
---|
| 19 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.