1 /* 2 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net> 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef CONNECTION_WINDOW__H 7 #define CONNECTION_WINDOW__H 8 9 #include <Window.h> 10 #include "ConnectionView.h" 11 12 13 class ConnectionWindow : public BWindow { 14 public: 15 ConnectionWindow(BRect frame, const BString& interfaceName); 16 17 virtual bool QuitRequested(); 18 19 private: 20 ConnectionView *fConnectionView; 21 }; 22 23 24 #endif 25