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

fix dynamic linking
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 May 2020 13:04:34 +0200
parents ffe9beb7c5d3
children
comparison
equal deleted inserted replaced
1425:95674f9c169a 1426:1e132fe7090e
50 // function promises), after the function that created them is 50 // function promises), after the function that created them is
51 // left. This avoids creating one global variable for each loader. 51 // left. This avoids creating one global variable for each loader.
52 std::list< boost::shared_ptr<IObserver> > loaders_; 52 std::list< boost::shared_ptr<IObserver> > loaders_;
53 53
54 virtual void EmitMessage(boost::weak_ptr<IObserver> observer, 54 virtual void EmitMessage(boost::weak_ptr<IObserver> observer,
55 const IMessage& message); 55 const IMessage& message) ORTHANC_OVERRIDE;
56 56
57 public: 57 public:
58 GenericLoadersContext(unsigned int maxHighPriority, 58 GenericLoadersContext(unsigned int maxHighPriority,
59 unsigned int maxStandardPriority, 59 unsigned int maxStandardPriority,
60 unsigned int maxLowPriority); 60 unsigned int maxLowPriority);