xref: /haiku/src/apps/powerstatus/PowerStatusWindow.h (revision 2f470aec1c92ce6917b8a903e343795dc77af41f)
1 /*
2  * Copyright 2006, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Axel Dörfler, axeld@pinc-software.de
7  */
8 #ifndef POWER_STATUS_WINDOW_H
9 #define POWER_STATUS_WINDOW_H
10 
11 
12 #include <Window.h>
13 
14 
15 class PowerStatusWindow : public BWindow {
16 	public:
17 		PowerStatusWindow();
18 		virtual ~PowerStatusWindow();
19 
20 		virtual bool QuitRequested();
21 };
22 
23 #endif	// POWER_STATUS_WINDOW_H
24