xref: /haiku/src/preferences/media/Media.h (revision cda5b8808fd0262f0fac472f6cfa809f846a83cf)
1 /*
2  * Copyright 2003-2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors in chronological order:
6  *		Sikosis
7  *		Jérôme Duval
8  */
9 #ifndef MEDIA_H
10 #define MEDIA_H
11 
12 
13 #include "MediaWindow.h"
14 
15 #include <Application.h>
16 
17 
18 class Media : public BApplication {
19 	public:
20 		Media();
21 		virtual ~Media();
22 
23 		virtual void MessageReceived(BMessage* message);
24 		status_t InitCheck();
25 
26 	private:
27 		MediaWindow* fWindow;
28 };
29 
30 #endif	// MEDIA_H
31