dd9332d9e1
Co-authored-by: Alexander Shabalin <alexander.shabalin@ashabalin.me> Merge-request: KT-MR-14493 Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
15 lines
333 B
Objective-C
15 lines
333 B
Objective-C
/*
|
|
* Copyright 2010-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
struct ObjHeader;
|
|
|
|
@interface KotlinBase : NSObject <NSCopying>
|
|
+ (instancetype)createRetainedWrapper:(struct ObjHeader *)obj;
|
|
@end
|