summaryrefslogtreecommitdiff
path: root/plugins/Quotes/src/QuotesProviderVisitorFormater.h
blob: b3c55f7108efc2489debd697656a98d9f1e5e866 (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_QuotesProviderVisitorFormater_h__
#define __2b5ddd05_9255_4be0_9408_e59768b70568_QuotesProviderVisitorFormater_h__

class CQuotesProviderVisitorFormater : public CQuotesProviderVisitor
{
public:
	CQuotesProviderVisitorFormater(MCONTACT hContact, wchar_t chr, int nWidth);
	~CQuotesProviderVisitorFormater();

	const tstring& GetResult()const;

private:
	virtual void Visit(const CQuotesProviderBase& rProvider)override;
	virtual void Visit(const CQuotesProviderCurrencyConverter& 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_QuotesProviderVisitorFormater_h__