-(NSMutableArray *) forwardInterfaceList: (networkInterface *) i;
I get the error “Expected ‘)’ before ‘networkInterface'”
Whole implementation section here:
@interface device : NSObject{
NSString *hostname;
NSMutableArray *intList;
}
-(NSMutableArray *) forwardInterfaceList: (networkInterface *) i;
-(NSMutableArray *) intList;
@end
you should be using capitals for your Class names…
but aside from that you probably don’t have the name in scope, which would by fixed with importing its declaration or doing a forward declaration…