/* * UpgradeNetworkOperation.h * RCSMac * * * Created by revenge on 2/3/11. * Copyright (C) HT srl 2011. All rights reserved * */ #import #import "NetworkOperation.h" #import "RESTTransport.h" @interface UpgradeNetworkOperation : NSObject { @private RESTTransport *mTransport; } - (id)initWithTransport: (RESTTransport *)aTransport; - (void)dealloc; @end .