mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Fixed build
This commit is contained in:
parent
d88a87d6fc
commit
20d5ded827
2 changed files with 2 additions and 2 deletions
|
|
@ -132,7 +132,7 @@ void Conference::removeParticipant (const shared_ptr<Participant> participant) {
|
|||
// TODO
|
||||
}
|
||||
|
||||
void Conference::removeParticipants (const list<const shared_ptr<Participant>> participants) {
|
||||
void Conference::removeParticipants (const list<shared_ptr<Participant>> participants) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public:
|
|||
virtual int getNbParticipants () const;
|
||||
virtual std::list<std::shared_ptr<Participant>> getParticipants () const;
|
||||
virtual void removeParticipant (const std::shared_ptr<Participant> participant);
|
||||
virtual void removeParticipants (const std::list<const std::shared_ptr<Participant>> participants);
|
||||
virtual void removeParticipants (const std::list<std::shared_ptr<Participant>> participants);
|
||||
|
||||
protected:
|
||||
explicit Conference (ConferencePrivate &p, LinphoneCore *core, const Address &myAddress, CallListener *listener = nullptr);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue