Moved insertChatRoom to public part of private core

This commit is contained in:
Sylvain Berfini 2017-10-31 17:35:43 +01:00
parent 53c83d3585
commit 2a64f69f35

View file

@ -33,11 +33,11 @@ public:
std::unique_ptr<MainDb> mainDb;
LinphoneCore *cCore = nullptr;
void insertChatRoom (const std::shared_ptr<ChatRoom> &chatRoom);
void insertChatRoomWithDb (const std::shared_ptr<ChatRoom> &chatRoom);
std::shared_ptr<ChatRoom> createChatRoom (const Address &peerAddress, bool isRtt);
private:
void insertChatRoom (const std::shared_ptr<ChatRoom> &chatRoom);
void deleteChatRoom (const std::string &peerAddress);
void deleteChatRoomWithDb (const std::string &peerAddress);