1/*
2 * Copyright 2009 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Ryan Leavengood, leavengood@gmail.com
7 */
8#ifndef _DEFAULT_SETTINGS_VIEW_H
9#define _DEFAULT_SETTINGS_VIEW_H
10
11
12class BView;
13
14namespace BPrivate {
15
16void
17BuildDefaultSettingsView(BView* view, const char* moduleName, const char* info);
18
19}	// namespace BPrivate
20
21
22#endif	// _DEFAULT_SETTINGS_VIEW_H
23
24