1/*
2 * Copyright 2008-2013 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Stephan A��mus <superstippi@gmx.de>
7 *		Axel D��rfler, axeld@pinc-software.de.
8 */
9#ifndef INIT_PARAMETERS_PANEL_H
10#define INIT_PARAMETERS_PANEL_H
11
12
13#include "AbstractParametersPanel.h"
14
15
16class InitParametersPanel : public AbstractParametersPanel {
17public:
18								InitParametersPanel(BWindow* window,
19									const BString& diskSystem,
20									BPartition* partition);
21	virtual						~InitParametersPanel();
22
23			status_t			Go(BString& name, BString& parameters);
24};
25
26
27#endif // INIT_PARAMETERS_PANEL_H
28