Add objc-class.h to objc headers

Some applications still include the old objc-class.h header expecting
to obtain the declarations contained in objc/message.h and
objc/runtime.h nowadays. This commit adds this header to achieve
out-of-the-box compatibility with these applications.
main
Daniel Ferreira 9 years ago
parent e285ba83a9
commit 1593ac04af

@ -65,6 +65,7 @@ set(libobjc_HDRS
objc/objc-api.h
objc/objc-arc.h
objc/objc-auto.h
objc/objc-class.h
objc/objc-runtime.h
objc/objc.h
objc/runtime-deprecated.h

@ -0,0 +1,2 @@
#include <objc/runtime.h>
#include <objc/message.h>
Loading…
Cancel
Save