mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 02:09:22 +00:00
Fix build.
This commit is contained in:
parent
2e2c39b7bc
commit
5c857c2db1
2 changed files with 5 additions and 0 deletions
|
|
@ -101,6 +101,10 @@ const Address &ServerGroupChatRoom::getConferenceAddress () const {
|
|||
return LocalConference::getConferenceAddress();
|
||||
}
|
||||
|
||||
shared_ptr<Participant> ServerGroupChatRoom::getMe () const {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
int ServerGroupChatRoom::getNbParticipants () const {
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ public:
|
|||
bool canHandleParticipants () const override;
|
||||
std::shared_ptr<Participant> findParticipant (const Address &addr) const override;
|
||||
const Address &getConferenceAddress () const override;
|
||||
std::shared_ptr<Participant> getMe () const override;
|
||||
int getNbParticipants () const override;
|
||||
std::list<std::shared_ptr<Participant>> getParticipants () const override;
|
||||
const std::string &getSubject () const override;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue