mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
feat(BasicChatRoom): remove useless includes
This commit is contained in:
parent
0cee5a91a4
commit
056f9435e9
1 changed files with 2 additions and 8 deletions
|
|
@ -19,13 +19,7 @@
|
|||
#ifndef _BASIC_CHAT_ROOM_H_
|
||||
#define _BASIC_CHAT_ROOM_H_
|
||||
|
||||
// From coreapi
|
||||
#include "private.h"
|
||||
|
||||
#include "chat/chat-room.h"
|
||||
#include "conference/conference-interface.h"
|
||||
|
||||
#include "linphone/types.h"
|
||||
|
||||
// =============================================================================
|
||||
|
||||
|
|
@ -38,11 +32,11 @@ public:
|
|||
BasicChatRoom (LinphoneCore *core, const Address &peerAddress);
|
||||
virtual ~BasicChatRoom () = default;
|
||||
|
||||
/* ConferenceInterface */
|
||||
/* ConferenceInterface. */
|
||||
std::shared_ptr<Participant> addParticipant (const Address &addr, const CallSessionParams *params, bool hasMedia) override;
|
||||
void addParticipants (const std::list<Address> &addresses, const CallSessionParams *params, bool hasMedia) override;
|
||||
bool canHandleParticipants () const override;
|
||||
const std::string& getId () const override;
|
||||
const std::string &getId () const override;
|
||||
int getNbParticipants () const override;
|
||||
std::list<std::shared_ptr<Participant>> getParticipants () const override;
|
||||
void removeParticipant (const std::shared_ptr<const Participant> &participant) override;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue