mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
d6b10c99aa
This is pretty much just changing [] to * and moving [N] to the other side of the variable name.
25 lines
577 B
Objective-C
25 lines
577 B
Objective-C
#ifndef __ruamoko_Protocol_h
|
|
#define __ruamoko_Protocol_h
|
|
|
|
#include "Object.h"
|
|
|
|
struct obj_method_description {
|
|
string name;
|
|
string types;
|
|
};
|
|
|
|
@interface Protocol : Object
|
|
{
|
|
@private
|
|
string protocol_name;
|
|
struct obj_protocol_list *protocol_list;
|
|
struct obj_method_description_list *instance_methods, *class_methods;
|
|
}
|
|
|
|
- (string) name;
|
|
- (BOOL) conformsTo: (Protocol *)aProtocolObject;
|
|
- (struct obj_method_description *) descriptionForInstanceMethod: (SEL)aSel;
|
|
- (struct obj_method_description *) descriptionForClassMethod: (SEL)aSel;
|
|
@end
|
|
|
|
#endif//__ruamoko_Protocol_h
|