1 /* 2 * Copyright 2008, Ralf Schülke, teammaui@web.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef PAIRS_H 6 #define PAIRS_H 7 8 #include <Application.h> 9 10 extern const char* kSignature; 11 12 class BMessage; 13 class PairsWindow; 14 15 class Pairs : public BApplication { 16 public: 17 Pairs(); 18 virtual ~Pairs(); 19 20 virtual void ReadyToRun(); 21 virtual void RefsReceived(BMessage* message); 22 virtual void MessageReceived(BMessage* message); 23 24 private: 25 PairsWindow* fWindow; 26 }; 27 28 #endif // PAIRS_H 29