xref: /haiku/src/preferences/notifications/SettingsHost.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2  * Copyright 2010, 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 
13 class SettingsHost {
14 public:
15 					SettingsHost() {}
16 
17 	virtual	void	SettingChanged() = 0;
18 };
19 
20 #endif // _SETTINGS_HOST_H
21