btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / bin / network / ppp_up / ConnectionWindow.h
blob2cd1d1b8187815277ade35ba93a4e37f34ca4f9c
1 /*
2 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net>
3 * Distributed under the terms of the MIT License.
4 */
6 #ifndef CONNECTION_WINDOW__H
7 #define CONNECTION_WINDOW__H
9 #include <Window.h>
10 #include "ConnectionView.h"
13 class ConnectionWindow : public BWindow {
14 public:
15 ConnectionWindow(BRect frame, const BString& interfaceName);
17 virtual bool QuitRequested();
19 private:
20 ConnectionView *fConnectionView;
24 #endif