HaikuDepot: notify work status from main window
[haiku.git] / src / apps / firstbootprompt / BootPrompt.h
blobcb357bfc9d5e42753bdc157b3a07540790967dd2
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
8 #include <Application.h>
11 enum {
12 MSG_BOOT_DESKTOP = 'dktp',
13 MSG_RUN_INSTALLER = 'inst'
16 extern const char* kAppSignature;
19 class BootPromptApp : public BApplication {
20 public:
21 BootPromptApp();
23 virtual void MessageReceived(BMessage* message);
24 virtual void ReadyToRun();
27 #endif // BOOT_PROMPT_APP_H