/* * Copyright (c) 2021 Belledonne Communications SARL. * * This file is part of linphone-desktop * (see https://www.linphone.org). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "LinphoneEnums.hpp" // ============================================================================= void LinphoneEnums::registerMetaTypes(){ qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); } linphone::MediaEncryption LinphoneEnums::toLinphone(const LinphoneEnums::MediaEncryption& data){ return static_cast(data); } LinphoneEnums::MediaEncryption LinphoneEnums::fromLinphone(const linphone::MediaEncryption& data){ return static_cast(data); } linphone::FriendCapability LinphoneEnums::toLinphone(const LinphoneEnums::FriendCapability& data){ return static_cast(data); } LinphoneEnums::FriendCapability LinphoneEnums::fromLinphone(const linphone::FriendCapability& data){ return static_cast(data); } linphone::EventLog::Type LinphoneEnums::toLinphone(const LinphoneEnums::EventLogType& data){ return static_cast(data); } LinphoneEnums::EventLogType LinphoneEnums::fromLinphone(const linphone::EventLog::Type& data){ return static_cast(data); } linphone::ChatMessage::State LinphoneEnums::toLinphone(const LinphoneEnums::ChatMessageState& data){ return static_cast(data); } LinphoneEnums::ChatMessageState LinphoneEnums::fromLinphone(const linphone::ChatMessage::State& data){ return static_cast(data); } linphone::Call::Status LinphoneEnums::toLinphone(const LinphoneEnums::CallStatus& data){ return static_cast(data); } LinphoneEnums::CallStatus LinphoneEnums::fromLinphone(const linphone::Call::Status& data){ return static_cast(data); } linphone::Tunnel::Mode LinphoneEnums::toLinphone(const LinphoneEnums::TunnelMode& data){ return static_cast(data); } LinphoneEnums::TunnelMode LinphoneEnums::fromLinphone(const linphone::Tunnel::Mode& data){ return static_cast(data); } linphone::RecorderState LinphoneEnums::toLinphone(const LinphoneEnums::RecorderState& data){ return static_cast(data); } LinphoneEnums::RecorderState LinphoneEnums::fromLinphone(const linphone::RecorderState& data){ return static_cast(data); }