LEFT | RIGHT |
1 /** | 1 /** |
2 * This class contains all client functionality of the IE plugin | 2 * This class contains all client functionality of the IE plugin |
3 * | 3 * |
4 * Exception errors are tested by calls to ExceptionsTest from: Main ... | 4 * Exception errors are tested by calls to ExceptionsTest from: Main ... |
5 */ | 5 */ |
6 | 6 |
7 #ifndef _PLUGIN_SETTINGS_H_ | 7 #ifndef _PLUGIN_SETTINGS_H_ |
8 #define _PLUGIN_SETTINGS_H_ | 8 #define _PLUGIN_SETTINGS_H_ |
9 | 9 |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 void SetDefaultSubscription(); | 128 void SetDefaultSubscription(); |
129 CString GetSubscription(); | 129 CString GetSubscription(); |
130 | 130 |
131 bool GetStatusBarAsked(); | 131 bool GetStatusBarAsked(); |
132 void SetStatusBarAsked(); | 132 void SetStatusBarAsked(); |
133 std::vector<SubscriptionDescription> m_subscriptions; | 133 std::vector<SubscriptionDescription> m_subscriptions; |
134 }; | 134 }; |
135 | 135 |
136 | 136 |
137 #endif // _PLUGIN_SETTINGS_H_ | 137 #endif // _PLUGIN_SETTINGS_H_ |
LEFT | RIGHT |