Overview
| Comment: | Add OFKeyValueCoding
No support for paths and auto-wrapping yet. Also, no classes like OFDictionary override it yet. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3ad1f2b268ce6d737b2a9072c8e8f0f8 |
| User & Date: | js on 2016-06-05 00:01:20 |
| Other Links: | manifest | tags |
Context
|
2016-06-05
| ||
| 13:18 | Key Value Coding: Implement auto-wrapping (check-in: 6a92704355 user: js tags: trunk) | |
| 00:01 | Add OFKeyValueCoding (check-in: 3ad1f2b268 user: js tags: trunk) | |
|
2016-06-04
| ||
| 22:31 | OFZIP: Cast app delegate to OFZIP* (check-in: c5901029a0 user: js tags: trunk) | |
Changes
Modified src/Makefile from [d07480767f] to [9a38cd4575].
| ︙ | |||
34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | + |
OFMutableArray.m \
OFMutableDictionary.m \
OFMutableSet.m \
OFMutableString.m \
OFNull.m \
OFNumber.m \
OFObject.m \
OFObject+KeyValueCoding.m \
OFObject+Serialization.m \
OFOptionsParser.m \
${OFPROCESS_M} \
OFRIPEMD160Hash.m \
OFRunLoop.m \
OFSeekableStream.m \
OFSet.m \
|
| ︙ | |||
112 113 114 115 116 117 118 119 120 121 122 123 124 125 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | + |
OFThreadPool.m \
threading.m
INCLUDES := ${SRCS:.m=.h} \
OFCollection.h \
OFHash.h \
OFJSONRepresentation.h \
OFKeyValueCoding.h \
OFLocking.h \
OFMessagePackRepresentation.h \
OFSerialization.h \
OFTLSSocket.h \
ObjFW.h \
autorelease.h \
${ATOMIC_H} \
|
| ︙ |
Added src/OFKeyValueCoding.h version [3dd35e7786].
|
Added src/OFObject+KeyValueCoding.h version [1c62947d53].
|
Added src/OFObject+KeyValueCoding.m version [76ddc597a2].