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 9 #include <Application.h> 10 #include <Catalog.h> 11 12 #include "EULAWindow.h" 13 #include "InstallerWindow.h" 14 15 16 class InstallerApp : public BApplication { 17 public: 18 InstallerApp(); 19 20 virtual void MessageReceived(BMessage* message); 21 virtual void AboutRequested(); 22 virtual void ReadyToRun(); 23 24 private: 25 EULAWindow* fEULAWindow; 26 }; 27 28 #endif // INSTALLER_APP_H 29