2005-09-20 15:44:08 +00:00
|
|
|
/*
|
2005-09-21 10:13:46 +00:00
|
|
|
* Copyright 2005, Jérôme DUVAL. All rights reserved.
|
2005-09-20 15:44:08 +00:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2009-04-24 12:24:25 +00:00
|
|
|
#ifndef INSTALLER_APP_H
|
|
|
|
#define INSTALLER_APP_H
|
2005-09-20 15:44:08 +00:00
|
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
#include "InstallerWindow.h"
|
|
|
|
|
2009-04-24 12:24:25 +00:00
|
|
|
|
2005-09-20 15:44:08 +00:00
|
|
|
class InstallerApp : public BApplication {
|
2009-04-24 12:24:25 +00:00
|
|
|
public:
|
|
|
|
InstallerApp();
|
2005-09-20 15:44:08 +00:00
|
|
|
|
2009-04-24 12:24:25 +00:00
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
|
|
virtual void AboutRequested();
|
|
|
|
virtual void ReadyToRun();
|
2007-05-12 13:37:02 +00:00
|
|
|
|
2009-04-24 12:24:25 +00:00
|
|
|
private:
|
|
|
|
BWindow* fEULAWindow;
|
2005-09-20 15:44:08 +00:00
|
|
|
};
|
|
|
|
|
2009-04-24 12:24:25 +00:00
|
|
|
#endif // INSTALLER_APP_H
|