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 16 17 class HApp :public BApplication { 18 public: 19 HApp(); 20 virtual ~HApp(); 21 22 protected: 23 virtual void AboutRequested(); 24 }; 25 26 #endif // HAPP_H 27