2015-06-05 15:24:08 -04:00
|
|
|
// 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__
|
|
|
|
|
2015-07-16 09:05:28 -04:00
|
|
|
#include <Foundation/Foundation.h>
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-06 11:55:50 -04:00
|
|
|
@class GoInterfacesI;
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-06 11:55:50 -04:00
|
|
|
@class GoInterfacesWithParam;
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-20 08:21:11 -04:00
|
|
|
@protocol GoInterfacesI
|
|
|
|
- (int32_t)Rand;
|
|
|
|
@end
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-20 08:21:11 -04:00
|
|
|
@protocol GoInterfacesWithParam
|
|
|
|
- (void)HasParam:(BOOL)p0;
|
|
|
|
@end
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-20 08:21:11 -04:00
|
|
|
FOUNDATION_EXPORT int32_t GoInterfacesAdd3(id<GoInterfacesI> r);
|
2015-06-05 15:24:08 -04:00
|
|
|
|
2015-07-20 08:21:11 -04:00
|
|
|
FOUNDATION_EXPORT id<GoInterfacesI> GoInterfacesSeven();
|
2015-06-05 15:24:08 -04:00
|
|
|
|
|
|
|
#endif
|