haiku/src/apps/installer/InstallerApp.h

25 lines
425 B
C
Raw Normal View History

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