ObjFW  Check-in [f786163cf8]

Overview
Comment:Fix ObjC++.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f786163cf822cc4e7f087f72abe543bcb0b20f637636b569c887a605d4665cb3
User & Date: js on 2011-09-11 01:28:46
Other Links: manifest | tags
Context
2011-09-11
02:55
Style improvements in TableGenerator.m. check-in: 5131770885 user: js tags: trunk
01:28
Fix ObjC++. check-in: f786163cf8 user: js tags: trunk
00:09
Remove blocks support in OFXMLParser as it was useless. check-in: 9975294bb1 user: js tags: trunk
Changes

Modified src/OFObject.h from [786dbd8023] to [26f6124a82].

424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
 * done.
 *
 * The methods which will be added from the specified class are not allowed to
 * use super or access instance variables, instead they have to use accessors.
 *
 * \param class The class from which the instance methods should be inherited
 */
+ (void)inheritMethodsFromClass: (Class)class;

/**
 * \brief Initializes an already allocated object.
 *
 * Derived classes may override this, but need to do self = [super init] before
 * they do any initialization themselves. init may never return nil, instead
 * an exception (for example OFInitializationFailed) should be thrown.







|







424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
 * done.
 *
 * The methods which will be added from the specified class are not allowed to
 * use super or access instance variables, instead they have to use accessors.
 *
 * \param class The class from which the instance methods should be inherited
 */
+ (void)inheritMethodsFromClass: (Class)class_;

/**
 * \brief Initializes an already allocated object.
 *
 * Derived classes may override this, but need to do self = [super init] before
 * they do any initialization themselves. init may never return nil, instead
 * an exception (for example OFInitializationFailed) should be thrown.