1 /* 2 * Copyright 1999-2009 Jeremy Friesner 3 * Copyright 2009-2010 Haiku, Inc. All rights reserved. 4 * Distributed under the terms of the MIT License. 5 * 6 * Authors: 7 * Jeremy Friesner 8 * Fredrik Modéen 9 */ 10 #ifndef SHORTCUTS_APP_H 11 #define SHORTCUTS_APP_H 12 13 14 #include <Application.h> 15 16 17 class ShortcutsApp : public BApplication { 18 public: 19 ShortcutsApp(); 20 ~ShortcutsApp(); 21 virtual void ReadyToRun(); 22 }; 23 24 25 #endif // SHORTCUTS_APP_H 26