haiku/src/apps/networkstatus/NetworkStatusWindow.h
Axel Dörfler f01106c3cf * Moved the network status replicant into its own application, similar to what
ProcessController and PowerStatus are doing.
* Currently polls for info only - later, the stack should support listeners for
  interface related changes.
* Also works under BONE (although it doesn't make much sense to use it there).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20655 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-04-11 16:01:02 +00:00

24 lines
444 B
C++

/*
* Copyright 2006-2007, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Axel Dörfler, axeld@pinc-software.de
*/
#ifndef NETWORK_STATUS_WINDOW_H
#define NETWORK_STATUS_WINDOW_H
#include <Window.h>
class NetworkStatusWindow : public BWindow {
public:
NetworkStatusWindow();
virtual ~NetworkStatusWindow();
virtual bool QuitRequested();
};
#endif // NETWORK_STATUS_WINDOW_H