Overview
Comment: | Don't install headers for implementations of abstract classes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b9191c784bbdd0226945b2ec22ef888b |
User & Date: | js on 2011-08-21 21:11:08 |
Other Links: | manifest | tags |
Context
2011-08-22
| ||
09:58 | Clean up the class hierarchy in the doxygen generated documentation. check-in: 367bf4117b user: js tags: trunk | |
2011-08-21
| ||
21:11 | Don't install headers for implementations of abstract classes. check-in: b9191c784b user: js tags: trunk | |
11:03 | Make OFDictionary an abstract class. check-in: c0098f89fe user: js tags: trunk | |
Changes
Modified src/Makefile from [c5ddd1ebd2] to [7a839ac93a].
1 2 3 4 5 6 7 8 9 10 11 | include ../extra.mk SUBDIRS = exceptions LIB = ${OBJFW_SHARED_LIB} LIB_MAJOR = ${OBJFW_LIB_MAJOR} LIB_MINOR = ${OBJFW_LIB_MINOR} STATIC_LIB = ${OBJFW_STATIC_LIB} SRCS = OFApplication.m \ OFArray.m \ | < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | include ../extra.mk SUBDIRS = exceptions LIB = ${OBJFW_SHARED_LIB} LIB_MAJOR = ${OBJFW_LIB_MAJOR} LIB_MINOR = ${OBJFW_LIB_MINOR} STATIC_LIB = ${OBJFW_STATIC_LIB} SRCS = OFApplication.m \ OFArray.m \ OFAutoreleasePool.m \ OFBlock.m \ OFConstantString.m \ OFCountedSet.m \ OFDataArray.m \ OFDataArray+Hashing.m \ OFDate.m \ OFDictionary.m \ OFDoubleMatrix.m \ OFDoubleVector.m \ OFEnumerator.m \ OFFile.m \ OFFloatMatrix.m \ OFFloatVector.m \ OFHash.m \ OFHTTPRequest.m \ OFIntrospection.m \ OFList.m \ OFMD5Hash.m \ OFMutableArray.m \ OFMutableDictionary.m \ OFMutableSet.m \ OFMutableString.m \ OFNull.m \ OFNumber.m \ OFObject.m \ OFObject+Serialization.m \ ${OFPLUGIN_M} \ |
︙ | ︙ | |||
72 73 74 75 76 77 78 | ObjFW.h \ asprintf.h \ ${ATOMIC_H} \ macros.h \ objfw-defs.h \ ${THREADING_H} | > > > > | | | | | | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | ObjFW.h \ asprintf.h \ ${ATOMIC_H} \ macros.h \ objfw-defs.h \ ${THREADING_H} SRCS += OFArray_adjacent.m \ OFDictionary_hashtable.m \ OFMutableArray_adjacent.m \ OFMutableDictionary_hashtable.m \ ${ASPRINTF_M} \ ${FOUNDATION_COMPAT_M} \ iso_8859_15.m \ windows_1252.m \ ${OBJC_PROPERTIES_M} \ ${OBJC_SYNC_M} include ../buildsys.mk CPPFLAGS += -I. -I.. -Iexceptions LD = ${OBJC} LDFLAGS += ${REEXPORT_LIBOBJC} ${MACH_ALIAS_LIST} LIB_OBJS += ${EXCEPTIONS_EXCEPTIONS_LIB_A} OBJS += ${EXCEPTIONS_EXCEPTIONS_A} |
Modified src/OFArray_adjacent.h from [0519520f07] to [86772f5a07].
︙ | ︙ | |||
14 15 16 17 18 19 20 | * file. */ #import "OFArray.h" @class OFDataArray; | < < < | 14 15 16 17 18 19 20 21 22 23 24 25 | * file. */ #import "OFArray.h" @class OFDataArray; @interface OFArray_adjacent: OFArray { OFDataArray *array; } @end |
Modified src/OFMutableArray_adjacent.h from [b465e001bc] to [538066a6c0].
︙ | ︙ | |||
14 15 16 17 18 19 20 | * file. */ #import "OFArray.h" @class OFDataArray; | < < < | 14 15 16 17 18 19 20 21 22 23 24 25 26 | * file. */ #import "OFArray.h" @class OFDataArray; @interface OFMutableArray_adjacent: OFMutableArray { OFDataArray *array; unsigned long mutations; } @end |