mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
fix(ConferenceEvent): add getAddress impl
This commit is contained in:
parent
ab41ae3c45
commit
133d58d618
2 changed files with 9 additions and 1 deletions
|
|
@ -52,4 +52,9 @@ ConferenceEvent &ConferenceEvent::operator= (const ConferenceEvent &src) {
|
|||
return *this;
|
||||
}
|
||||
|
||||
shared_ptr<Address> ConferenceEvent::getAddress () const {
|
||||
// TODO.
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
LINPHONE_END_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -28,18 +28,21 @@
|
|||
LINPHONE_BEGIN_NAMESPACE
|
||||
|
||||
class Address;
|
||||
class Conference;
|
||||
class ConferenceEventPrivate;
|
||||
|
||||
class LINPHONE_PUBLIC ConferenceEvent : public Event {
|
||||
public:
|
||||
ConferenceEvent (Type type, const std::shared_ptr<Address> &address);
|
||||
ConferenceEvent (const ConferenceEvent &src);
|
||||
virtual ~ConferenceEvent () = default;
|
||||
|
||||
ConferenceEvent &operator= (const ConferenceEvent &src);
|
||||
|
||||
std::shared_ptr<Address> getAddress () const;
|
||||
|
||||
protected:
|
||||
ConferenceEvent (ConferenceEventPrivate &p, Type type);
|
||||
|
||||
private:
|
||||
L_DECLARE_PRIVATE(ConferenceEvent);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue