2 * Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
4 * All rights reserved. Distributed under the terms of the MIT License.
8 #ifndef _CONNECTION_INCOMING_H_
9 #define _CONNECTION_INCOMING_H_
12 //----------------------- Global includes ----------------------
14 #include <SupportKit.h>
15 #include <InterfaceKit.h>
28 ConnectionView(BRect frame
, const char *name
);
30 virtual void MessageReceived(BMessage
*message
);
31 void Draw(BRect update
);
40 class ConnectionIncoming
: public BWindow
43 ConnectionIncoming(RemoteDevice
* rDevice
);
44 ~ConnectionIncoming();
45 virtual void MessageReceived(BMessage
*message
);
46 virtual bool QuitRequested();
49 ConnectionView
* _ConnectionView
;
54 #ifndef _BT_USE_EXPLICIT_NAMESPACE
55 using Bluetooth::ConnectionIncoming
;