// // UIComputerView.h // Moonlight // // Created by Diego Waxemberg on 10/22/14. // Copyright (c) 2014 Moonlight Stream. All rights reserved. // #import #import "Host.h" @protocol HostCallback - (void) hostClicked:(Host*)host view:(UIView*)view; - (void) hostLongClicked:(Host*)host view:(UIView*)view; - (void) addHostClicked; @end @interface UIComputerView : UIView - (id) initWithComputer:(Host*)host andCallback:(id)callback; - (id) initForAddWithCallback:(id)callback; @end