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