tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / screen / AlertWindow.h
blobd21675707327c5bea88e3b8b4967d299021fbd58
1 /*
2 * Copyright 2001-2005, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Rafael Romo
7 * Stefano Ceccherini (burton666@libero.it)
8 * Axel Dörfler, axeld@pinc-software.de
9 */
10 #ifndef ALERT_WINDOW_H
11 #define ALERT_WINDOW_H
14 #include <Window.h>
15 #include <Messenger.h>
18 class BMessageRunner;
19 class BButton;
20 class AlertView;
23 class AlertWindow : public BWindow {
24 public:
25 AlertWindow(BMessenger target);
27 virtual void MessageReceived(BMessage *message);
29 private:
30 BMessenger fTarget;
31 AlertView* fAlertView;
34 #endif /* ALERT_WINDOW_H */