2
0
mirror of synced 2025-02-23 14:58:12 +00:00
mobile/bind/testdata/issue10788.objc.h.golden
Hyang-Ah (Hana) Kim 8f4eb9eb49 bind: add objective-c code generator.
Translate error type to NSError.
Interface type is not supported yet.

Change-Id: I54abba2360cff41ef8ca08063b0120e7edd65a47
Reviewed-on: https://go-review.googlesource.com/10793
Reviewed-by: David Crawshaw <crawshaw@golang.org>
Reviewed-by: Damien Neil <dneil@google.com>
2015-06-09 20:58:21 +00:00

26 lines
475 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 "seq.h"
@class GoIssue10788_TestInterface;
@class GoIssue10788_TestStruct;
@interface GoIssue10788_TestStruct : NSObject {
}
@property(strong, readonly) GoSeqRef *ref;
- (id)initWithRef:(GoSeqRef*)ref;
- (NSString*)Value;
- (void)setValue:(NSString*)v;
@end
#endif