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