1/*
2 * Copyright 2010-2017, Haiku, Inc. All Rights Reserved.
3 * Copyright 2009, Pier Luigi Fiorini.
4 * Distributed under the terms of the MIT License.
5 */
6#ifndef _SETTINGS_HOST_H
7#define _SETTINGS_HOST_H
8
9#include <vector>
10
11#include "SettingsPane.h"
12
13class SettingsHost {
14public:
15					SettingsHost() {}
16
17	virtual	void	SettingChanged(bool showExample = false) = 0;
18};
19
20#endif // _SETTINGS_HOST_H
21