1 /* 2 * Copyright 2003-2006, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Atsushi Takamatsu 7 * Jérôme Duval 8 * Oliver Ruiz Dorantes 9 */ 10 #ifndef HAPP_H 11 #define HAPP_H 12 13 14 #include <Application.h> 15 #include <Catalog.h> 16 17 18 class HApp : public BApplication { 19 public: 20 HApp(); 21 virtual ~HApp(); 22 virtual void AboutRequested(); 23 }; 24 25 26 #endif // HAPP_H 27