Guest User

Untitled

a guest
Aug 15th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. namespace Swift {
  2.    
  3.     class ChatLogWindowFactory;
  4.     class ChatLogWindow;
  5.  
  6.     class ChatLogController {
  7.         public:
  8.             ChatLogController(UIEventStream* uiEventStream, ChatLogWindowFactory* chatLogWindowFactory);
  9.             ~ChatLogController();
  10.  
  11.         private:
  12.             void handleUIEvent(boost::shared_ptr<UIEvent> event);
  13.  
  14.         private:
  15.             ChatLogWindowFactory* chatLogWindowFactory;
  16.             ChatLogWindow* chatLogWindow;
  17.     };
  18. }
Add Comment
Please, Sign In to add comment