1/*
2 * Copyright 2008-2011, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8#ifndef DESCRIPTION_PAGE_H
9#define DESCRIPTION_PAGE_H
10
11
12#include "WizardPageView.h"
13
14
15class BTextView;
16
17class DescriptionPage : public WizardPageView {
18public:
19								DescriptionPage(const char* name,
20									const char* description, bool hasHeading);
21	virtual						~DescriptionPage();
22
23private:
24			void				_BuildUI(const char* description,
25									bool hasHeading);
26
27private:
28			BTextView*			fDescription;
29};
30
31
32#endif	// DESCRIPTION_PAGE_H
33