47 std::vector<AddressBookRow*>
getAll()
const override;
48 bool addRow(
const std::string &dst_addr ,
const std::string &payment_id,
const std::string &description)
override;
49 bool deleteRow(std::size_t rowId)
override;
bool addRow(const std::string &dst_addr, const std::string &payment_id, const std::string &description) override
Definition: address_book.cpp:48
void clearRows()
Definition: address_book.cpp:157
void clearStatus()
Definition: address_book.cpp:164
std::vector< AddressBookRow * > m_rows
Definition: address_book.h:63
WalletImpl * m_wallet
Definition: address_book.h:62
bool deleteRow(std::size_t rowId) override
Definition: address_book.cpp:126
std::string m_errorString
Definition: address_book.h:64
int errorCode() const override
Definition: address_book.h:53
std::string errorString() const override
Definition: address_book.h:52
Definition: address_book.cpp:41
~AddressBookImpl()
Definition: address_book.cpp:175
Definition: address_book.h:39
AddressBookImpl(WalletImpl *wallet)
Definition: address_book.cpp:45
void refresh() override
Definition: address_book.cpp:97
std::vector< AddressBookRow * > getAll() const override
Definition: address_book.cpp:169
int lookupPaymentID(const std::string &payment_id) const override
Definition: address_book.cpp:135
int m_errorCode
Definition: address_book.h:65
The AddressBook - interface for Book.
Definition: wallet2_api.h:241