xref: /haiku/src/preferences/bluetooth/BluetoothMain.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2008-09, Oliver Ruiz Dorantes, <oliver.ruiz.dorantes_at_gmail.com>
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef BLUETOOTH_MAIN_H
6 #define BLUETOOTH_MAIN_H
7 
8 #include <Application.h>
9 
10 class BluetoothWindow;
11 
12 class BluetoothApplication : public BApplication
13 {
14 public:
15 				 BluetoothApplication();
16 	virtual void ReadyToRun();
17 	virtual void MessageReceived(BMessage*);
18 	virtual void AboutRequested();
19 
20 private:
21 	BluetoothWindow*	fWindow;
22 };
23 
24 #endif
25