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