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