repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / installer / InstallerApp.h
blob4fb43aa81b59d51d712c7e74e39c39e3a3178360
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
9 #include <Application.h>
10 #include <Catalog.h>
12 #include "EULAWindow.h"
13 #include "InstallerWindow.h"
16 class InstallerApp : public BApplication {
17 public:
18 InstallerApp();
20 virtual void MessageReceived(BMessage* message);
22 virtual void AboutRequested();
23 virtual void ReadyToRun();
24 virtual void Quit();
26 private:
27 EULAWindow* fEULAWindow;
30 #endif // INSTALLER_APP_H