46 std::vector<AddressBookRow*>
getAll()
const override;
47 bool addRow(
const std::string &dst_addr ,
const std::string &payment_id,
const std::string &description)
override;
48 bool deleteRow(std::size_t rowId)
override;
Definition: address_book.h:39
~AddressBookImpl()
Definition: address_book.cpp:144
int errorCode() const override
Definition: address_book.h:52
std::vector< AddressBookRow * > getAll() const override
Definition: address_book.cpp:138
bool deleteRow(std::size_t rowId) override
Definition: address_book.cpp:95
void refresh() override
Definition: address_book.cpp:73
void clearStatus()
Definition: address_book.cpp:133
std::vector< AddressBookRow * > m_rows
Definition: address_book.h:62
std::string errorString() const override
Definition: address_book.h:51
int lookupPaymentID(const std::string &payment_id) const override
Definition: address_book.cpp:104
AddressBookImpl(WalletImpl *wallet)
Definition: address_book.cpp:44
std::string m_errorString
Definition: address_book.h:63
int m_errorCode
Definition: address_book.h:64
WalletImpl * m_wallet
Definition: address_book.h:61
void clearRows()
Definition: address_book.cpp:126
bool addRow(const std::string &dst_addr, const std::string &payment_id, const std::string &description) override
Definition: address_book.cpp:47
Definition: address_book.cpp:40
The AddressBook - interface for Book.
Definition: wallet2_api.h:242