1 
2 #ifndef OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
3 #define OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
4 
5 class CSettings
6 {
7 public:
8   CSettings();
9   ~CSettings();
10   HRESULT Load(LPCTSTR pszLoadKey);
11   HRESULT Store(LPCTSTR pszStoreKey);
12   LPCTSTR GetPrompt();
13   WORD GetNormalTextAttributes();
14   WORD GetCommandTextAttributes();
15 private:
16   HRESULT Clean();
17   LPTSTR m_pszPrompt;
18   WORD m_wNormalTextAttributes;
19   WORD m_wCommandTextAttributes;
20 };
21 
22 #endif // #ifndef OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
23