f01106c3cf
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
24 lines
444 B
C++
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
|