2
0
mirror of synced 2025-02-23 23:08:14 +00:00
mobile/bind/testdata/interfaces.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

28 lines
528 B
Plaintext

// Objective-C API for talking to interfaces Go package.
// gobind -lang=objc interfaces
//
// File is generated by gobind. Do not edit.
#ifndef __GoInterfaces_H__
#define __GoInterfaces_H__
#include <Foundation/Foundation.h>
@class GoInterfacesI;
@class GoInterfacesWithParam;
@protocol GoInterfacesI
- (int32_t)Rand;
@end
@protocol GoInterfacesWithParam
- (void)HasParam:(BOOL)p0;
@end
FOUNDATION_EXPORT int32_t GoInterfacesAdd3(id<GoInterfacesI> r);
FOUNDATION_EXPORT id<GoInterfacesI> GoInterfacesSeven();
#endif