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 16 class InitParametersPanel : public AbstractParametersPanel { 17 public: 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