#ifndef MUMSI_PJSUACOMMUNICATOR_HPP #define MUMSI_PJSUACOMMUNICATOR_HPP #include "PjsuaMediaPort.hpp" #include "AbstractCommunicator.hpp" #include #include #include namespace pjsua { constexpr int SIP_PORT = 5060; class PjsuaCommunicator : public AbstractCommunicator { public: PjsuaCommunicator( SoundSampleQueue &inputQueue, SoundSampleQueue &outputQueue, std::string host, std::string user, std::string password); ~PjsuaCommunicator(); void loop(); private: PjsuaMediaPort mediaPort; }; } #endif //MUMSI_PJSUACOMMUNICATOR_HPP