xref: /haiku/src/preferences/bluetooth/BluetoothMain.h (revision 3c6e2dd68577c34d93e17f19711f6245bf6d0915)
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 
15 public:
16 	BluetoothApplication(void);
17 	virtual void ReadyToRun();
18 	virtual void MessageReceived(BMessage*);
19 	virtual void AboutRequested();
20 
21 private:
22 	BluetoothWindow*	fWindow;
23 	BCatalog		fCatalog;
24 
25 };
26 
27 #endif
28