mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
/*
|
|
* chat-message-p.h
|
|
* Copyright (C) 2017 Belledonne Communications SARL
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _CHAT_MESSAGE_P_H_
|
|
#define _CHAT_MESSAGE_P_H_
|
|
|
|
#include "chat-message.h"
|
|
#include "db/events-db.h"
|
|
#include "object/object-p.h"
|
|
|
|
// =============================================================================
|
|
|
|
LINPHONE_BEGIN_NAMESPACE
|
|
|
|
class ChatMessagePrivate : public ObjectPrivate {
|
|
friend class CpimChatMessageModifier;
|
|
friend class MultipartChatMessageModifier;
|
|
|
|
private:
|
|
std::weak_ptr<ChatRoom> chatRoom;
|
|
ChatMessage::Direction direction = ChatMessage::Incoming;
|
|
// LinphoneAddress *from;
|
|
// LinphoneAddress *to;
|
|
std::shared_ptr<ErrorInfo> errorInfo;
|
|
std::string text;
|
|
bool isSecured = false;
|
|
bool isReadOnly = false;
|
|
time_t time = 0;
|
|
std::string id;
|
|
std::string appData;
|
|
std::list<std::shared_ptr<Content> > contents;
|
|
std::shared_ptr<Content> internalContent;
|
|
std::unordered_map<std::string, std::string> customHeaders;
|
|
ChatMessage::State state = ChatMessage::Idle;
|
|
std::shared_ptr<EventsDb> eventsDb;
|
|
|
|
L_DECLARE_PUBLIC(ChatMessage);
|
|
};
|
|
|
|
LINPHONE_END_NAMESPACE
|
|
|
|
#endif // ifndef _CHAT_MESSAGE_P_H_
|