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 #include <Catalog.h> 17 #include <Locale.h> 18 19 20 class Media : public BApplication { 21 public: 22 Media(); 23 virtual ~Media(); 24 25 virtual void MessageReceived(BMessage* message); 26 status_t InitCheck(); 27 28 private: 29 MediaIcons fIcons; 30 MediaWindow* fWindow; 31 }; 32 33 #endif // MEDIA_H 34