be explicit about epics::auto_ptr

This commit is contained in:
Michael Davidsaver
2017-11-06 12:46:13 -06:00
parent 9bf03fbfbe
commit dcb74b781d
5 changed files with 8 additions and 8 deletions

View File

@@ -2687,16 +2687,16 @@ private:
Channel::shared_pointer m_mpChannel;
ProcessAction m_scan1Hz;
auto_ptr<epics::pvData::Thread> m_scan1HzThread;
epics::auto_ptr<epics::pvData::Thread> m_scan1HzThread;
ProcessAction m_scan10Hz;
auto_ptr<epics::pvData::Thread> m_scan10HzThread;
epics::auto_ptr<epics::pvData::Thread> m_scan10HzThread;
ADCAction m_adcAction;
auto_ptr<epics::pvData::Thread> m_adcThread;
epics::auto_ptr<epics::pvData::Thread> m_adcThread;
NTNDArrayAction m_imgAction;
auto_ptr<epics::pvData::Thread> m_imgThread;
epics::auto_ptr<epics::pvData::Thread> m_imgThread;
};
string MockServerChannelProvider::PROVIDER_NAME = "local";