diff options
Diffstat (limited to 'p2pvr/lib/muxer.h')
-rw-r--r-- | p2pvr/lib/muxer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/p2pvr/lib/muxer.h b/p2pvr/lib/muxer.h index 0888268..cd82e34 100644 --- a/p2pvr/lib/muxer.h +++ b/p2pvr/lib/muxer.h @@ -11,17 +11,17 @@ namespace P2PVR { class DLL_PUBLIC Muxer : public RawDataClient { public: - Muxer(const RawDataClientPrx & target, const std::string & cmd); + Muxer(const RawDataClientPrxPtr & target, const std::string & cmd); ~Muxer(); - bool NewData(const Data &, const Ice::Current &); + bool NewData(const Data, const Ice::Current &) override; private: DLL_PRIVATE bool ReadWaiting() const; DLL_PRIVATE bool ReadAvailable() const; DLL_PRIVATE bool ReadMuxerAndSend(int wait) const; - const RawDataClientPrx target; - typedef boost::shared_ptr<AdHoc::System::ProcessPipes> ProcessPipesPtr; + const RawDataClientPrxPtr target; + typedef std::shared_ptr<AdHoc::System::ProcessPipes> ProcessPipesPtr; ProcessPipesPtr fds; mutable std::mutex lock; |