comparison Framework/Loaders/GenericLoadersContext.cpp @ 1426:1e132fe7090e

fix dynamic linking
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 May 2020 13:04:34 +0200
parents 0ca50d275b9a
children 297e57d3508c
comparison
equal deleted inserted replaced
1425:95674f9c169a 1426:1e132fe7090e
71 { 71 {
72 that_.scheduler_->CancelAllRequests(); 72 that_.scheduler_->CancelAllRequests();
73 } 73 }
74 74
75 virtual void GetStatistics(uint64_t& scheduledCommands, 75 virtual void GetStatistics(uint64_t& scheduledCommands,
76 uint64_t& processedCommands) 76 uint64_t& processedCommands) ORTHANC_OVERRIDE
77 { 77 {
78 scheduledCommands = that_.scheduler_->GetTotalScheduled(); 78 scheduledCommands = that_.scheduler_->GetTotalScheduled();
79 processedCommands = that_.scheduler_->GetTotalProcessed(); 79 processedCommands = that_.scheduler_->GetTotalProcessed();
80 } 80 }
81 }; 81 };