2
0
mirror of synced 2025-02-23 23:08:14 +00:00
mobile/bind/testdata/issue10788.objc.h.golden
Hyang-Ah (Hana) Kim 9865dd0755 bind: implement objective-C interface binding code generation.
Depends on cl/12389 progress.

Change-Id: I044b0cf7c4df1d84b9ee158a4ceb3fdb13bf7645
Reviewed-on: https://go-review.googlesource.com/12410
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2015-07-31 20:12:37 +00:00

30 lines
635 B
Plaintext

// Objective-C API for talking to issue10788 Go package.
// gobind -lang=objc issue10788
//
// File is generated by gobind. Do not edit.
#ifndef __GoIssue10788_H__
#define __GoIssue10788_H__
#include <Foundation/Foundation.h>
@class GoIssue10788TestInterface;
@class GoIssue10788TestStruct;
@protocol GoIssue10788TestInterface
- (void)DoSomeWork:(GoIssue10788TestStruct*)s;
- (void)MultipleUnnamedParams:(int)p0 p1:(NSString*)p1 p2:(int64_t)p2;
@end
@interface GoIssue10788TestStruct : NSObject {
}
@property(strong, readonly) id ref;
- (id)initWithRef:(id)ref;
- (NSString*)Value;
- (void)setValue:(NSString*)v;
@end
#endif