mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
14 lines
368 B
C++
14 lines
368 B
C++
#include "../contact/ContactModel.hpp"
|
|
|
|
#include "ContactObserver.hpp"
|
|
|
|
// =============================================================================
|
|
|
|
ContactObserver::ContactObserver (const QString &sip_address) {
|
|
m_sip_address = sip_address;
|
|
}
|
|
|
|
void ContactObserver::setContact (ContactModel *contact) {
|
|
m_contact = contact;
|
|
emit contactChanged(contact);
|
|
}
|