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 }; 24 25 #endif 26