summaryrefslogtreecommitdiff
path: root/protocols/CurrencyRates/src/CurrencyRatesProviders.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-02-07 16:47:42 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-02-07 16:47:42 +0300
commit4241688a550499b67c202767440f1775e50eef91 (patch)
tree351730f575d4cdb281739908b2e1ceb853c5c484 /protocols/CurrencyRates/src/CurrencyRatesProviders.cpp
parentb8c4e0bc7ce124963c8694be67dcafeb702a1785 (diff)
CurrencyRates: CB RF provider
Diffstat (limited to 'protocols/CurrencyRates/src/CurrencyRatesProviders.cpp')
-rw-r--r--protocols/CurrencyRates/src/CurrencyRatesProviders.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/CurrencyRates/src/CurrencyRatesProviders.cpp b/protocols/CurrencyRates/src/CurrencyRatesProviders.cpp
index 70d9979b06..5aa6dac52e 100644
--- a/protocols/CurrencyRates/src/CurrencyRatesProviders.cpp
+++ b/protocols/CurrencyRates/src/CurrencyRatesProviders.cpp
@@ -3,6 +3,7 @@
#define LAST_RUN_VERSION "LastRunVersion"
void InitCC();
+void InitCbrf();
void InitExchangeRates();
TCurrencyRatesProviders g_apProviders;
@@ -14,6 +15,7 @@ CCurrencyRatesProviderBase *g_pCurrentProvider = nullptr;
void InitProviders()
{
InitCC();
+ InitCbrf();
InitExchangeRates();
g_pCurrentProvider = FindProvider(g_plugin.getMStringW(DB_STR_PROVIDER));