xref: /haiku/headers/os/add-ons/mail_daemon/MailSettingsView.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
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