btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / diskprobe / OpenWindow.h
blob4df1c635cebf0d10d1a829af074ad6c561efa815
1 /*
2 * Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef OPEN_WINDOW_H
6 #define OPEN_WINDOW_H
9 #include <Window.h>
11 class BEntry;
12 class BMenu;
15 class OpenWindow : public BWindow {
16 public:
17 OpenWindow();
18 virtual ~OpenWindow();
20 virtual void MessageReceived(BMessage* message);
21 virtual bool QuitRequested();
23 static void CollectDevices(BMenu* menu,
24 BEntry* startEntry = NULL);
26 private:
27 BMenu* fDevicesMenu;
30 #endif /* OPEN_WINDOW_H */