xref: /haiku/headers/os/add-ons/mail_daemon/MailSettingsView.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2012, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _MAIL_SETTINGS_VIEW_H
6 #define _MAIL_SETTINGS_VIEW_H
7 
8 
9 #include <MailSettings.h>
10 #include <View.h>
11 
12 
13 class BMailSettingsView : public BView {
14 public:
15 								BMailSettingsView(const char* name);
16 	virtual						~BMailSettingsView();
17 
18 	virtual status_t			SaveInto(
19 									BMailAddOnSettings& settings) const = 0;
20 };
21 
22 
23 #endif	// _MAIL_SETTINGS_VIEW_H
24