blob: 65ce84b9e43d761f480cf4c7e8ac649b2fcf1dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __2b5ddd05_9255_4be0_9408_e59768b70568_CurrencyRatesProviderVisitorFormater_h__
#define __2b5ddd05_9255_4be0_9408_e59768b70568_CurrencyRatesProviderVisitorFormater_h__
class CCurrencyRatesProviderVisitorFormater : public CCurrencyRatesProviderVisitor
{
public:
CCurrencyRatesProviderVisitorFormater(MCONTACT hContact, wchar_t chr, int nWidth);
~CCurrencyRatesProviderVisitorFormater();
const tstring& GetResult()const;
private:
virtual void Visit(const CCurrencyRatesProviderBase& rProvider)override;
virtual void Visit(const CCurrencyRatesProviderCurrencyConverter& rProvider)override;
private:
void FormatDoubleHelper(LPCSTR pszDbSet, const tstring sInvalid = L"-");
// void FormatChangeValueHelper(bool bPercentage);
private:
MCONTACT m_hContact;
wchar_t m_chr;
tstring m_sResult;
int m_nWidth;
};
#endif //__2b5ddd05_9255_4be0_9408_e59768b70568_CurrencyRatesProviderVisitorFormater_h__
|