prog.cpp:1:6: error: 'CVDIProvider' has not been declared
bool CVDIProvider::CheckBrokers()
^
prog.cpp: In function 'bool CheckBrokers()':
prog.cpp:3:6: error: 'm_BrokerList' was not declared in this scope
if (m_BrokerList.empty())
^
prog.cpp:6:2: error: 'trq' was not declared in this scope
trq << L"Broker validation has been started" << trq;
^
prog.cpp:8:2: error: 'Concurrency' has not been declared
Concurrency::task_group tasks;
^
prog.cpp:9:13: warning: C++11 auto only available with -std=c++11 or -std=gnu++11
FOREACH_STL(auto, it, m_BrokerList)
^
prog.cpp:9:14: error: expected primary-expression before 'auto'
FOREACH_STL(auto, it, m_BrokerList)
^
prog.cpp:9:20: error: 'it' was not declared in this scope
FOREACH_STL(auto, it, m_BrokerList)
^
prog.cpp:9:24: error: 'm_BrokerList' was not declared in this scope
FOREACH_STL(auto, it, m_BrokerList)
^
prog.cpp:9:36: error: 'FOREACH_STL' was not declared in this scope
FOREACH_STL(auto, it, m_BrokerList)
^
prog.cpp:20:23: error: 'tasks' was not declared in this scope
bool bIsCompleted = (tasks.wait() == Concurrency::completed);
^
prog.cpp:20:39: error: 'Concurrency' has not been declared
bool bIsCompleted = (tasks.wait() == Concurrency::completed);
^
prog.cpp: At global scope:
prog.cpp:29:6: error: 'CVDIProvider' has not been declared
void CVDIProvider::CheckBroker(IBroker* pBroker)
^
prog.cpp:29:32: error: variable or field 'CheckBroker' declared void
void CVDIProvider::CheckBroker(IBroker* pBroker)
^
prog.cpp:29:32: error: 'IBroker' was not declared in this scope
prog.cpp:29:41: error: 'pBroker' was not declared in this scope
void CVDIProvider::CheckBroker(IBroker* pBroker)
^