@@ -185,7 +185,7 @@ class ObjcppGenerator(spec: Spec) extends Generator(spec) {
wrapNamespace(w,spec.objcppNamespace,w=>{
w.wl(s"class $helperClass::ObjcProxy final")
w.wl(s": public $cppSelf")
w.wl(s", public ::djinni::DbxObjcWrapperCache<ObjcProxy>::Handle")// Use base class to avoid name conflicts with user-defined methods having the same name as this new data member
w.wl(s", public ::djinni::ObjcProxyCache::Handle<ObjcType>")// Use base class to avoid name conflicts with user-defined methods having the same name as this new data member
w.bracedSemi{
w.wlOutdent("public:")
w.wl("using Handle::Handle;")
...
...
@@ -195,7 +195,7 @@ class ObjcppGenerator(spec: Spec) extends Generator(spec) {