mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 21:05:00 +00:00
20 lines
528 B
C++
20 lines
528 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
|
|
|
#include "AddressBookInfo.h"
|
|
|
|
QString AddressBookInfo::address() const {
|
|
return m_address;
|
|
}
|
|
|
|
QString AddressBookInfo::description() const {
|
|
return m_description;
|
|
}
|
|
|
|
AddressBookInfo::AddressBookInfo(const Monero::AddressBookRow *pimpl, QObject *parent)
|
|
: QObject(parent)
|
|
, m_address(QString::fromStdString(pimpl->getAddress()))
|
|
, m_description(QString::fromStdString(pimpl->getDescription()))
|
|
{
|
|
|
|
}
|