ObjFW  Diff

Differences From Artifact [d628e82c53]:

To Artifact [a51d330892]:


101
102
103
104
105
106
107

108
109
110
111
112
113
114
115
116
101
102
103
104
105
106
107
108
109

110
111
112
113
114
115
116







+

-







 *	   or nil if it isn't implemented
 */
+ (IMP)instanceMethodForSelector: (SEL)selector;

/**
 * Replaces a method implementation with another implementation.
 *
 * \param newimp The new implementation for the method
 * \param selector The selector of the method to replace
 * \param imp The new implementation for the method
 * \return The old implementation
 */
+ (IMP)setImplementation: (IMP)newimp
	       forMethod: (SEL)selector;

/**
 * Replaces a method with a method from another class.