#ifndef __ruamoko_PropertyList_h #define __ruamoko_PropertyList_h #include #include @class PLItem; @protocol PLDictionary - (int) count; - (int) numKeys; - (PLItem *) getObjectForKey:(string) key; - (PLItem *) allKeys; - addKey:(string) key value:(PLItem *) value; @end @protocol PLArray - (int) count; - (int) numObjects; - (PLItem *) getObjectAtIndex:(int) index; - addObject:(PLItem *) object; - insertObject:(PLItem *) object atIndex:(int) index; @end @protocol PLString - (string) string; @end @interface PLItem: Object { plitem_t *item; int own; } + (PLItem *) newDictionary; + (PLItem *) newArray; + (PLItem *) newData:(void*) data size:(int) len; + (PLItem *) newString:(string) str; + (PLItem *) fromString:(string) str; + (PLItem *) fromFile:(QFile) file; - initWithItem:(plitem_t *) item; - initWithOwnItem:(plitem_t *) item; - (plitem_t *) item; - (string) write; - (pltype_t) type; - (int) line; @end @interface PLDictionary: PLItem + (PLDictionary *) new; @end @interface PLArray: PLItem + (PLArray *) new; @end @interface PLData: PLItem + (PLData *) new:(void*) data size:(int) len; @end @interface PLString: PLItem + (PLString *) new:(string) str; @end #endif//__ruamoko_PropertyList_h