From 1593ac04afd58b5434b0cb25be9c6761ad3dd60e Mon Sep 17 00:00:00 2001 From: Daniel Ferreira Date: Sat, 1 Jul 2017 04:19:18 +1000 Subject: [PATCH] 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. --- CMakeLists.txt | 1 + objc/objc-class.h | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 objc/objc-class.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 1885c00..aa3e1dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/objc/objc-class.h b/objc/objc-class.h new file mode 100644 index 0000000..4599f08 --- /dev/null +++ b/objc/objc-class.h @@ -0,0 +1,2 @@ +#include +#include