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