mirror of
https://review.haiku-os.org/haiku
synced 2025-02-12 08:39:18 +01:00
25 lines
425 B
C
25 lines
425 B
C
|
/*
|
|||
|
* 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 */
|