haiku/src/apps/installer/InstallerApp.h

25 lines
481 B
C
Raw Normal View History

/*
* Copyright 2005, Jérôme DUVAL. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef INSTALLER_APP_H
#define INSTALLER_APP_H
#include <Application.h>
#include "InstallerWindow.h"
class InstallerApp : public BApplication {
public:
InstallerApp();
virtual void MessageReceived(BMessage* message);
virtual void AboutRequested();
virtual void ReadyToRun();
private:
BWindow* fEULAWindow;
};
#endif // INSTALLER_APP_H