1 /* 2 * Copyright 2005, Jérôme DUVAL. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef INSTALLER_APP_H 6 #define INSTALLER_APP_H 7 8 #include <Application.h> 9 #include <Catalog.h> 10 11 #include "InstallerWindow.h" 12 13 14 class InstallerApp : public BApplication { 15 public: 16 InstallerApp(); 17 18 virtual void MessageReceived(BMessage* message); 19 virtual void AboutRequested(); 20 virtual void ReadyToRun(); 21 22 private: 23 BWindow* fEULAWindow; 24 }; 25 26 #endif // INSTALLER_APP_H 27