/*
 * RCSMac - NetworkProtocol Abstract Class
 *  Abstract Class (formal protocol) for a generic network protocol
 *
 *
 * Created by revenge on 12/01/2011
 * Copyright (C) HT srl 2011. All rights reserved
 *
 */

#import <Cocoa/Cocoa.h>


@protocol NetworkProtocol

- (BOOL)perform;

@end