xref: /haiku/src/preferences/bluetooth/BluetoothMain.h (revision 9080758a2454c9ab6b1d4d08c6f6f932df682ae9)
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