blob: 537f8bd0a6af1c1b1ffb4afd5377d84f59775277 (
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 __AD721194_E9944366_9CF1_0307460EF32F_QuotesProviderVisitorTendency_h__
#define __AD721194_E9944366_9CF1_0307460EF32F_QuotesProviderVisitorTendency_h__
class CQuotesProviderVisitorTendency : public CQuotesProviderVisitor
{
public:
CQuotesProviderVisitorTendency(MCONTACT hContact, wchar_t chr);
bool IsValid()const{ return m_bValid; }
double GetResult()const{ return m_dResult; }
private:
virtual void Visit(const CQuotesProviderBase& rProvider);
virtual void Visit(const CQuotesProviderGoogleFinance& rProvider);
virtual void Visit(const CQuotesProviderYahoo& rProvider);
private:
void GetValue(LPCSTR pszDbKeyName);
private:
MCONTACT m_hContact;
wchar_t m_chr;
bool m_bValid;
double m_dResult;
};
#endif //__AD721194_E9944366_9CF1_0307460EF32F_QuotesProviderVisitorTendency_h__
|