2
0
mirror of synced 2025-02-23 06:48:15 +00:00
mobile/bind/testdata/structs.objc.h.golden
Hyang-Ah (Hana) Kim 6fb2670129 bind/objc: Remove reference of seq.h from generated header file.
This allows gomobile bind to stop copying seq.h to the destination.

Change-Id: I4a23613fe0407500ad483ae9d8f6bb823d82f082
Reviewed-on: https://go-review.googlesource.com/12300
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2015-07-16 14:02:16 +00:00

31 lines
672 B
Plaintext

// Objective-C API for talking to structs Go package.
// gobind -lang=objc structs
//
// File is generated by gobind. Do not edit.
#ifndef __GoStructs_H__
#define __GoStructs_H__
#include <Foundation/Foundation.h>
@class GoStructsS;
@interface GoStructsS : NSObject {
}
@property(strong, readonly) id ref;
- (id)initWithRef:(id)ref;
- (double)X;
- (void)setX:(double)v;
- (double)Y;
- (void)setY:(double)v;
- (BOOL)Identity:(GoStructsS**)ret0_ error:(NSError**)error;
- (double)Sum;
@end
FOUNDATION_EXPORT GoStructsS* GoStructsIdentity(GoStructsS* s);
FOUNDATION_EXPORT BOOL GoStructsIdentityWithError(GoStructsS* s, GoStructsS** ret0_, NSError** error);
#endif