00001 00002 00003 00004 #import <Cocoa/Cocoa.h> 00005 00010 @interface MyTestClass : NSObject 00011 { 00012 int _ivar1; 00013 BOOL _ivar2; 00014 id _ivar3; 00015 } 00016 00017 - init; 00018 00020 - doSomethingImportant:(id)value; 00021 00022 @end 00023 00024 00025 class MyTestCppClass 00026 { 00027 public: 00028 MyTestCppClass() {} 00029 00031 int testMethod(int a, int b); 00032 00033 }; 00034