1 /* 2 * Copyright 2010, Stephan Aßmus <superstippi@gmx.de>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef BOOT_PROMPT_APP_H 6 #define BOOT_PROMPT_APP_H 7 8 #include <Application.h> 9 10 11 enum { 12 MSG_BOOT_DESKTOP = 'dktp', 13 MSG_RUN_INSTALLER = 'inst' 14 }; 15 16 extern const char* kAppSignature; 17 18 19 class BootPromptApp : public BApplication { 20 public: 21 BootPromptApp(); 22 23 virtual void MessageReceived(BMessage* message); 24 virtual void ReadyToRun(); 25 }; 26 27 #endif // BOOT_PROMPT_APP_H 28